From 39b34e2b8ac08f4fe95c2b52604d88dd04ee58e8 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 10 Feb 2026 12:30:21 +0800 Subject: [PATCH 1/6] Migrate vm diagnostics set --- .../azure/cli/command_modules/vm/commands.py | 2 +- .../azure/cli/command_modules/vm/custom.py | 28 +++++++++---------- 2 files changed, 15 insertions(+), 15 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 096df746e92..dab844d2104 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/commands.py @@ -318,7 +318,7 @@ def load_command_table(self, _): g.custom_command('enable', 'enable_boot_diagnostics') g.custom_command('get-boot-log', 'get_boot_log') - with self.command_group('vm diagnostics', compute_vm_sdk) as g: + with self.command_group('vm diagnostics') as g: g.custom_command('set', 'set_diagnostics_extension') g.custom_command('get-default-config', 'show_default_diagnostics_configuration') 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 092820ada97..0331754353c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2276,30 +2276,30 @@ def get_boot_log(cmd, resource_group_name, vm_name): # region VirtualMachines Diagnostics -def set_diagnostics_extension( - cmd, resource_group_name, vm_name, settings, protected_settings=None, version=None, - no_auto_upgrade=False): - client = _compute_client_factory(cmd.cli_ctx) - vm = client.virtual_machines.get(resource_group_name, vm_name, expand='instanceView') - # pylint: disable=no-member - is_linux_os = _is_linux_os(vm) +def set_diagnostics_extension(cmd, resource_group_name, vm_name, settings, protected_settings=None, version=None, + no_auto_upgrade=False): + from .aaz.latest.vm.extension import Delete as VmExtentionDelete + vm = get_instance_view(cmd, resource_group_name, vm_name) + is_linux_os = _is_linux_os_by_aaz(vm) vm_extension_name = _LINUX_DIAG_EXT if is_linux_os else _WINDOWS_DIAG_EXT if is_linux_os: # check incompatible version - exts = vm.instance_view.extensions or [] + exts = vm.get('instanceView', {}).get('extensions', []) major_ver = extension_mappings[_LINUX_DIAG_EXT]['version'].split('.', maxsplit=1)[0] - if next((e for e in exts if e.name == vm_extension_name and - not e.type_handler_version.startswith(major_ver + '.')), None): + if next((e for e in exts if e.get('name') == vm_extension_name and + not e.get('typeHandlerVersion', '').startswith(major_ver + '.')), None): logger.warning('There is an incompatible version of diagnostics extension installed. ' 'We will update it with a new version') - poller = client.virtual_machine_extensions.begin_delete(resource_group_name, vm_name, vm_extension_name) + poller = VmExtentionDelete(cmd.cli_ctx)(command_args={ + 'resource_group': resource_group_name, + 'vm_extension_name': vm_extension_name, + 'vm_name': vm_name + }) LongRunningOperation(cmd.cli_ctx)(poller) return set_extension(cmd, resource_group_name, vm_name, vm_extension_name, extension_mappings[vm_extension_name]['publisher'], version or extension_mappings[vm_extension_name]['version'], - settings, - protected_settings, - no_auto_upgrade) + settings, protected_settings, no_auto_upgrade) def show_default_diagnostics_configuration(is_windows_os=False): From 496b94994a1decb759c6c40e1d5d6731bf8ae41a Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 11 Feb 2026 15:29:32 +0800 Subject: [PATCH 2/6] Fix code --- .../azure/cli/command_modules/vm/custom.py | 10 +- .../cli/command_modules/vm/operations/vm.py | 242 ++++++++++++++++++ 2 files changed, 248 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 0331754353c..f648581a345 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2278,18 +2278,20 @@ def get_boot_log(cmd, resource_group_name, vm_name): # region VirtualMachines Diagnostics def set_diagnostics_extension(cmd, resource_group_name, vm_name, settings, protected_settings=None, version=None, no_auto_upgrade=False): - from .aaz.latest.vm.extension import Delete as VmExtentionDelete + from .aaz.latest.vm.extension import Delete as VmExtensionDelete + from .operations.vm import convert_show_result_to_snake_case vm = get_instance_view(cmd, resource_group_name, vm_name) + vm = convert_show_result_to_snake_case(vm) is_linux_os = _is_linux_os_by_aaz(vm) vm_extension_name = _LINUX_DIAG_EXT if is_linux_os else _WINDOWS_DIAG_EXT if is_linux_os: # check incompatible version - exts = vm.get('instanceView', {}).get('extensions', []) + exts = vm.get('instance_view', {}).get('extensions', []) major_ver = extension_mappings[_LINUX_DIAG_EXT]['version'].split('.', maxsplit=1)[0] if next((e for e in exts if e.get('name') == vm_extension_name and - not e.get('typeHandlerVersion', '').startswith(major_ver + '.')), None): + not e.get('type_handler_version', '').startswith(major_ver + '.')), None): logger.warning('There is an incompatible version of diagnostics extension installed. ' 'We will update it with a new version') - poller = VmExtentionDelete(cmd.cli_ctx)(command_args={ + poller = VmExtensionDelete(cli_ctx=cmd.cli_ctx)(command_args={ 'resource_group': resource_group_name, 'vm_extension_name': vm_extension_name, 'vm_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 09f7244a3b8..61cbc98aac6 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 @@ -322,6 +322,8 @@ def convert_show_result_to_snake_case(result): new_result["host"] = result["host"] if "hostGroup" in result: new_result["host_group"] = result["hostGroup"] + if "instanceView" in result: + new_result["instance_view"] = result["instanceView"] if "licenseType" in result: new_result["license_type"] = result["licenseType"] if "networkProfile" in result: @@ -414,6 +416,246 @@ def convert_show_result_to_snake_case(result): vm_size_properties["v_cp_us_per_core"] = vm_size_properties["vCPUsPerCore"] vm_size_properties.pop("vCPUsPerCore") + instance_view_properties = new_result.get("instance_view", {}) or {} + if "assignedHost" in instance_view_properties: + instance_view_properties['assigned_host'] = instance_view_properties['assignedHost'] + instance_view_properties.pop("assignedHost") + if "bootDiagnostics" in instance_view_properties: + instance_view_properties['boot_diagnostics'] = instance_view_properties['bootDiagnostics'] + instance_view_properties.pop("bootDiagnostics") + if "computerName" in instance_view_properties: + instance_view_properties['computer_name'] = instance_view_properties['computerName'] + instance_view_properties.pop("computerName") + + disks_properties = instance_view_properties.get("disks", []) or [] + for disks_property in disks_properties: + if "encryptionSettings" in disks_property: + disks_property['encryption_settings'] = disks_property['encryptionSettings'] + disks_property.pop("encryptionSettings") + + es_properties = disks_property.get("encryption_settings", []) or [] + for es_property in es_properties: + if "diskEncryptionKey" in es_property: + es_property['disk_encryption_key'] = es_property['diskEncryptionKey'] + es_property.pop("diskEncryptionKey") + + dek_properties = es_property.get("disk_encryption_key", {}) or {} + if "secretUrl" in dek_properties: + dek_properties['secret_url'] = dek_properties['secretUrl'] + dek_properties.pop("secretUrl") + if "sourceVault" in dek_properties: + dek_properties['source_vault'] = dek_properties['sourceVault'] + dek_properties.pop("sourceVault") + + if "keyEncryptionKey" in es_property: + es_property['key_encryption_key'] = es_property['keyEncryptionKey'] + es_property.pop("keyEncryptionKey") + + kek_properties = es_property.get("key_encryption_key", {}) or {} + if "keyUrl" in kek_properties: + kek_properties['key_url'] = kek_properties['keyUrl'] + kek_properties.pop("keyUrl") + if "sourceVault" in kek_properties: + kek_properties['source_vault'] = kek_properties['sourceVault'] + kek_properties.pop("sourceVault") + + statuses_properties = disks_property.get("statuses", []) or [] + for statuses_property in statuses_properties: + if "displayStatus" in statuses_property: + statuses_property['display_status'] = statuses_property['displayStatus'] + statuses_property.pop("displayStatus") + + extensions_properties = instance_view_properties.get("extensions", []) or [] + for extensions_property in extensions_properties: + if "typeHandlerVersion" in extensions_property: + extensions_property['type_handler_version'] = extensions_property['typeHandlerVersion'] + extensions_property.pop("typeHandlerVersion") + + statuses_properties = extensions_property.get("statuses", []) or [] + for statuses_property in statuses_properties: + if "displayStatus" in statuses_property: + statuses_property['display_status'] = statuses_property['displayStatus'] + statuses_property.pop("displayStatus") + + substatuses_properties = extensions_property.get("substatuses", []) or [] + for substatuses_property in substatuses_properties: + if "displayStatus" in substatuses_property: + substatuses_property['display_status'] = substatuses_property['displayStatus'] + substatuses_property.pop("displayStatus") + + if "hyperVGeneration" in instance_view_properties: + instance_view_properties['hyper_v_generation'] = instance_view_properties['hyperVGeneration'] + instance_view_properties.pop("hyperVGeneration") + if "isVMInStandbyPool" in instance_view_properties: + instance_view_properties['is_vm_in_standby_pool'] = instance_view_properties['isVMInStandbyPool'] + instance_view_properties.pop("isVMInStandbyPool") + if "maintenanceRedeployStatus" in instance_view_properties: + instance_view_properties['maintenance_redeploy_status'] = instance_view_properties['maintenanceRedeployStatus'] + instance_view_properties.pop("maintenanceRedeployStatus") + if "osName" in instance_view_properties: + instance_view_properties['os_name'] = instance_view_properties['osName'] + instance_view_properties.pop("osName") + if "osVersion" in instance_view_properties: + instance_view_properties['os_version'] = instance_view_properties['osVersion'] + instance_view_properties.pop("osVersion") + if "patchStatus" in instance_view_properties: + instance_view_properties['patch_status'] = instance_view_properties['patchStatus'] + instance_view_properties.pop("patchStatus") + if "platformFaultDomain" in instance_view_properties: + instance_view_properties['platform_fault_domain'] = instance_view_properties['platformFaultDomain'] + instance_view_properties.pop("platformFaultDomain") + if "platformUpdateDomain" in instance_view_properties: + instance_view_properties['platform_update_domain'] = instance_view_properties['platformUpdateDomain'] + instance_view_properties.pop("platformUpdateDomain") + if "rdpThumbPrint" in instance_view_properties: + instance_view_properties['rdp_thumb_print'] = instance_view_properties['rdpThumbPrint'] + instance_view_properties.pop("rdpThumbPrint") + + statuses_properties = instance_view_properties.get("statuses", []) or [] + for statuses_property in statuses_properties: + if "displayStatus" in statuses_property: + statuses_property['display_status'] = statuses_property['displayStatus'] + statuses_property.pop("displayStatus") + + if "vmAgent" in instance_view_properties: + instance_view_properties['vm_agent'] = instance_view_properties['vmAgent'] + instance_view_properties.pop("vmAgent") + if "vmHealth" in instance_view_properties: + instance_view_properties['vm_health'] = instance_view_properties['vmHealth'] + instance_view_properties.pop("vmHealth") + + bd_properties = instance_view_properties.get("boot_diagnostics", {}) or {} + if "consoleScreenshotBlobUri" in bd_properties: + bd_properties['console_screenshot_blob_uri'] = bd_properties['consoleScreenshotBlobUri'] + bd_properties.pop("consoleScreenshotBlobUri") + if "serialConsoleLogBlobUri" in bd_properties: + bd_properties['serial_console_log_blob_uri'] = bd_properties['serialConsoleLogBlobUri'] + bd_properties.pop("serialConsoleLogBlobUri") + status_properties = bd_properties.get("status", {}) or {} + if "displayStatus" in status_properties: + status_properties['display_status'] = status_properties['displayStatus'] + status_properties.pop("displayStatus") + + mrs_properties = instance_view_properties.get("maintenance_redeploy_status", {}) or {} + if "isCustomerInitiatedMaintenanceAllowed" in mrs_properties: + mrs_properties['is_customer_initiated_maintenance_allowed'] = mrs_properties['isCustomerInitiatedMaintenanceAllowed'] + mrs_properties.pop("isCustomerInitiatedMaintenanceAllowed") + if "lastOperationMessage" in mrs_properties: + mrs_properties['last_operation_message'] = mrs_properties['lastOperationMessage'] + mrs_properties.pop("lastOperationMessage") + if "lastOperationResultCode" in mrs_properties: + mrs_properties['last_operation_result_code'] = mrs_properties['lastOperationResultCode'] + mrs_properties.pop("lastOperationResultCode") + if "maintenanceWindowEndTime" in mrs_properties: + mrs_properties['maintenance_window_end_time'] = mrs_properties['maintenanceWindowEndTime'] + mrs_properties.pop("maintenanceWindowEndTime") + if "maintenanceWindowStartTime" in mrs_properties: + mrs_properties['maintenance_window_start_time'] = mrs_properties['maintenanceWindowStartTime'] + mrs_properties.pop("maintenanceWindowStartTime") + if "preMaintenanceWindowEndTime" in mrs_properties: + mrs_properties['pre_maintenance_window_end_time'] = mrs_properties['preMaintenanceWindowEndTime'] + mrs_properties.pop("preMaintenanceWindowEndTime") + if "preMaintenanceWindowStartTime" in mrs_properties: + mrs_properties['pre_maintenance_window_start_time'] = mrs_properties['preMaintenanceWindowStartTime'] + mrs_properties.pop("preMaintenanceWindowStartTime") + + ps_properties = instance_view_properties.get("patch_status", {}) or {} + if "availablePatchSummary" in ps_properties: + ps_properties['available_patch_summary'] = ps_properties['availablePatchSummary'] + ps_properties.pop("availablePatchSummary") + if "configurationStatuses" in ps_properties: + ps_properties['configuration_statuses'] = ps_properties['configurationStatuses'] + ps_properties.pop("configurationStatuses") + if "lastPatchInstallationSummary" in ps_properties: + ps_properties['last_patch_installation_summary'] = ps_properties['lastPatchInstallationSummary'] + ps_properties.pop("lastPatchInstallationSummary") + + va_properties = instance_view_properties.get("vm_agent", {}) or {} + if "extensionHandlers" in va_properties: + va_properties['extension_handlers'] = va_properties['extensionHandlers'] + va_properties.pop("extensionHandlers") + if "vmAgentVersion" in va_properties: + va_properties['vm_agent_version'] = va_properties['vmAgentVersion'] + va_properties.pop("vmAgentVersion") + + vh_properties = instance_view_properties.get("vm_health", {}) or {} + status_properties = vh_properties.get("status", {}) or {} + if "displayStatus" in status_properties: + status_properties['display_status'] = status_properties['displayStatus'] + status_properties.pop("displayStatus") + + aps_properties = ps_properties.get("available_patch_summary", {}) or {} + if "assessmentActivityId" in aps_properties: + aps_properties['assessment_activity_id'] = aps_properties['assessmentActivityId'] + aps_properties.pop("assessmentActivityId") + if "criticalAndSecurityPatchCount" in aps_properties: + aps_properties['critical_and_security_patch_count'] = aps_properties['criticalAndSecurityPatchCount'] + aps_properties.pop("criticalAndSecurityPatchCount") + if "lastModifiedTime" in aps_properties: + aps_properties['last_modified_time'] = aps_properties['lastModifiedTime'] + aps_properties.pop("lastModifiedTime") + if "otherPatchCount" in aps_properties: + aps_properties['other_patch_count'] = aps_properties['otherPatchCount'] + aps_properties.pop("otherPatchCount") + if "rebootPending" in aps_properties: + aps_properties['reboot_pending'] = aps_properties['rebootPending'] + aps_properties.pop("rebootPending") + if "startTime" in aps_properties: + aps_properties['start_time'] = aps_properties['startTime'] + aps_properties.pop("startTime") + + cs_properties = ps_properties.get("configuration_statuses", []) or [] + for cs_property in cs_properties: + if "displayStatus" in cs_property: + cs_property['display_status'] = cs_property['displayStatus'] + cs_property.pop("displayStatus") + + lpis_properties = ps_properties.get("last_patch_installation_summary", {}) or {} + if "excludedPatchCount" in lpis_properties: + lpis_properties['excluded_patch_count'] = lpis_properties['excludedPatchCount'] + lpis_properties.pop("excludedPatchCount") + if "failedPatchCount" in lpis_properties: + lpis_properties['failed_patch_count'] = lpis_properties['failedPatchCount'] + lpis_properties.pop("failedPatchCount") + if "installationActivityId" in lpis_properties: + lpis_properties['installation_activity_id'] = lpis_properties['installationActivityId'] + lpis_properties.pop("installationActivityId") + if "installedPatchCount" in lpis_properties: + lpis_properties['installed_patch_count'] = lpis_properties['installedPatchCount'] + lpis_properties.pop("installedPatchCount") + if "lastModifiedTime" in lpis_properties: + lpis_properties['last_modified_time'] = lpis_properties['lastModifiedTime'] + lpis_properties.pop("lastModifiedTime") + if "maintenanceWindowExceeded" in lpis_properties: + lpis_properties['maintenance_window_exceeded'] = lpis_properties['maintenanceWindowExceeded'] + lpis_properties.pop("maintenanceWindowExceeded") + if "notSelectedPatchCount" in lpis_properties: + lpis_properties['not_selected_patch_count'] = lpis_properties['notSelectedPatchCount'] + lpis_properties.pop("notSelectedPatchCount") + if "pendingPatchCount" in lpis_properties: + lpis_properties['pending_patch_count'] = lpis_properties['pendingPatchCount'] + lpis_properties.pop("pendingPatchCount") + if "startTime" in lpis_properties: + lpis_properties['start_time'] = lpis_properties['startTime'] + lpis_properties.pop("startTime") + + eh_properties = va_properties.get("extension_handlers", []) or [] + for eh_property in eh_properties: + status_properties = eh_property.get("status", {}) or {} + if "displayStatus" in status_properties: + status_properties['display_status'] = status_properties['displayStatus'] + status_properties.pop("displayStatus") + + if "typeHandlerVersion" in eh_property: + eh_property['type_handler_version'] = eh_property['typeHandlerVersion'] + eh_property.pop("typeHandlerVersion") + + statuses_properties = va_properties.get("statuses", []) or [] + for statuses_property in statuses_properties: + if "displayStatus" in statuses_property: + statuses_property['display_status'] = statuses_property['displayStatus'] + statuses_property.pop("displayStatus") + network_profile = new_result.get("network_profile", {}) or {} if "networkApiVersion" in network_profile: network_profile["network_api_version"] = network_profile["networkApiVersion"] From ab92c3b6a07a0b7d2567d21ca56e0c5b7a96c09f Mon Sep 17 00:00:00 2001 From: william051200 Date: Wed, 11 Feb 2026 15:29:48 +0800 Subject: [PATCH 3/6] Update test case and re-record test case --- .../test_diagnostics_extension_install.yaml | 7062 ++++++++--------- .../vm/tests/latest/test_vm_commands.py | 10 +- 2 files changed, 3312 insertions(+), 3760 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml index f873129784b..bf7b5e821c5 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml @@ -12,23 +12,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2024-08-26T08:11:07Z","module":"vm","DateCreated":"2024-08-26T08:11:13Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-11T07:20:19Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '500' + - '424' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:36 GMT + - Wed, 11 Feb 2026 07:20:52 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1FDBBA1799EA47E0AC936E0351D8337E Ref B: TYO201100114035 Ref C: 2024-08-26T08:11:37Z' + - 'Ref A: 57B90AD9CA7440C086A913838F6EF563 Ref B: SG2AA1070303052 Ref C: 2026-02-11T07:20:52Z' status: code: 200 message: OK @@ -59,16 +59,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\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:11:38 GMT + - Wed, 11 Feb 2026 07:20:52 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/f1fa5dff-af62-43ca-9606-cea4515713d0 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3F23CE1DBF2D4B2880C553C4ABC19A66 Ref B: TYO201151002011 Ref C: 2024-08-26T08:11:38Z' + - 'Ref A: B9657FC3A3EB422394BE30D66260A0A4 Ref B: SG2AA1070305040 Ref C: 2026-02-11T07:20:52Z' status: code: 200 message: OK @@ -110,37 +112,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:39 GMT + - Wed, 11 Feb 2026 07:20:54 GMT expires: - '-1' pragma: @@ -151,12 +150,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/db0eb426-427a-46b3-9379-246a6eb78b87 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73962 + - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D38DA746BD2B4A69912251E52813D7B1 Ref B: TYO201151002060 Ref C: 2024-08-26T08:11:38Z' + - 'Ref A: CC138DF036C4452697332AEC553FB63E Ref B: SG2AA1040518025 Ref C: 2026-02-11T07:20:53Z' status: code: 200 message: OK @@ -173,9 +174,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -189,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:39 GMT + - Wed, 11 Feb 2026 07:20:55 GMT expires: - '-1' pragma: @@ -201,9 +202,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: A50B99CAD729490F955A111A9DF47F39 Ref B: TYO201100113017 Ref C: 2024-08-26T08:11:39Z' + - 'Ref A: 8249847947DE42C2BD03AF84CC35E9E3 Ref B: SG2AA1070303042 Ref C: 2026-02-11T07:20:54Z' status: code: 200 message: OK @@ -220,16 +221,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -238,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:40 GMT + - Wed, 11 Feb 2026 07:20:56 GMT expires: - '-1' pragma: @@ -249,12 +250,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/476cf050-4756-482c-9d0e-8b9329351992 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43978 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 38FA0DCF215B45098E1F1A9308F81644 Ref B: TYO201151002034 Ref C: 2024-08-26T08:11:40Z' + - 'Ref A: 024305EE1F4B4B0293EA5B2E75CE5079 Ref B: SG2AA1040515040 Ref C: 2026-02-11T07:20:55Z' status: code: 200 message: OK @@ -271,37 +274,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:40 GMT + - Wed, 11 Feb 2026 07:20:57 GMT expires: - '-1' pragma: @@ -312,12 +312,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/5eabc57d-4b99-48fb-950e-6f18f5e60733 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73961 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73984 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ADEC0AA060F54EF6857D048AE116EBE4 Ref B: TYO201151001052 Ref C: 2024-08-26T08:11:40Z' + - 'Ref A: 436518F1955D4CE09EC183516E3F45C1 Ref B: SG2AA1040517029 Ref C: 2026-02-11T07:20:56Z' status: code: 200 message: OK @@ -334,16 +336,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -352,7 +354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:42 GMT + - Wed, 11 Feb 2026 07:20:58 GMT expires: - '-1' pragma: @@ -363,12 +365,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/22b6accf-13ed-4758-8f8e-5e92d61bd06f x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 78C8F9C4231746018E67FCF303A4AD81 Ref B: TYO201151006009 Ref C: 2024-08-26T08:11:41Z' + - 'Ref A: D8AD5B51A9CF4FF2B09A10E4DD8F519A Ref B: SG2AA1070304036 Ref C: 2026-02-11T07:20:57Z' status: code: 200 message: OK @@ -385,37 +389,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:42 GMT + - Wed, 11 Feb 2026 07:20:58 GMT expires: - '-1' pragma: @@ -426,12 +427,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/a0c75256-c341-4142-b83f-792b61328b4b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73960 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73983 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FC808B8D15634DA591C5C2E40B6C3DCC Ref B: TYO201151006036 Ref C: 2024-08-26T08:11:42Z' + - 'Ref A: 61307D1657374B1A9BACF3E657B317D7 Ref B: SG2AA1070301042 Ref C: 2026-02-11T07:20:58Z' status: code: 200 message: OK @@ -476,15 +479,15 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": - "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, - "osProfile": {"computerNamePrefix": "testdcd94", "adminUsername": "user11", + "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "testd5b0a", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "testdcd94Nic", "properties": {"ipConfigurations": [{"name": "testdcd94IPConfig", + [{"name": "testd5b0aNic", "properties": {"ipConfigurations": [{"name": "testd5b0aIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'', ''testdiagvmssNSG'')]"}, "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, - "sku": {"name": "Standard_DS1_v2", "capacity": 2}}], "outputs": {"VMSS": {"type": + "sku": {"name": "Standard_B1ls", "capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'', ''testdiagvmss''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}}, "parameters": {"adminPassword": {"value": "TestTest12#$"}}, "mode": "incremental"}}' @@ -498,22 +501,22 @@ interactions: Connection: - keep-alive Content-Length: - - '5118' + - '5116' Content-Type: - application/json ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","name":"vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10767264860064875351","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:11:50.0708639Z","duration":"PT0.0006395S","correlationId":"2f4f8333-2045-453b-abe4-8db63c37f776","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uhv9pqIggIttU2IXOUBdsaDub8rGUcp8","name":"vmss_deploy_Uhv9pqIggIttU2IXOUBdsaDub8rGUcp8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11659398502171664894","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-11T07:21:09.3862018Z","duration":"PT0.0005359S","correlationId":"90d40cfa-a509-40e3-8c55-5f9a8eaccf27","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij/operationStatuses/08584769469775523433?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uhv9pqIggIttU2IXOUBdsaDub8rGUcp8/operationStatuses/08584308124160759111?api-version=2024-11-01&t=639063912711831149&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=OdoMj5Or1AvHSE_qsNW7ZFpSfaxxzormFsdz3PueeOdRTpB8p0Y5mUBxuex_pUGvg7LmacMWT0pDSB2GhHIzvd-i8lMibgidfOSf39a00PMn7ilvuVHEIlhgjgrVh_wt6LbWZGzx7A-PLh0yS-5zXrlpy0pKOxg3_FzGVWeTENaZqy9y_Kq4qe5YpTzRnLnCFF7Tuc4VpnfmmZVtykeGrX3d4LpFd3UEeY9xKmXuoueIBzLx4eDn4WTtzVPsN4dnGsjlfePcDEarBgbU9XI82mJj4w580hedev65eFaFwHRYbBwgiwhN3YwLP8S920UYLk9g9I12kUiC0RJ0tyrBnQ&h=mQDe28hhVOL8_SqhBG0-OGXDkdT8fq-KmFzhTtMvc70 cache-control: - no-cache content-length: @@ -521,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:51 GMT + - Wed, 11 Feb 2026 07:21:10 GMT expires: - '-1' pragma: @@ -533,13 +536,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.568.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: C7DD80F8A2C84A15880F113EBA24D08A Ref B: TYO201100113049 Ref C: 2024-08-26T08:11:43Z' + - 'Ref A: C147B048FFED4F1BB4E3FF3A76BF0426 Ref B: SG2AA1070301042 Ref C: 2026-02-11T07:20:59Z' status: code: 201 message: Created @@ -556,11 +559,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308124160759111?api-version=2024-11-01&t=639063912711831149&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=OdoMj5Or1AvHSE_qsNW7ZFpSfaxxzormFsdz3PueeOdRTpB8p0Y5mUBxuex_pUGvg7LmacMWT0pDSB2GhHIzvd-i8lMibgidfOSf39a00PMn7ilvuVHEIlhgjgrVh_wt6LbWZGzx7A-PLh0yS-5zXrlpy0pKOxg3_FzGVWeTENaZqy9y_Kq4qe5YpTzRnLnCFF7Tuc4VpnfmmZVtykeGrX3d4LpFd3UEeY9xKmXuoueIBzLx4eDn4WTtzVPsN4dnGsjlfePcDEarBgbU9XI82mJj4w580hedev65eFaFwHRYbBwgiwhN3YwLP8S920UYLk9g9I12kUiC0RJ0tyrBnQ&h=mQDe28hhVOL8_SqhBG0-OGXDkdT8fq-KmFzhTtMvc70 response: body: string: '{"status":"Running"}' @@ -572,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:52 GMT + - Wed, 11 Feb 2026 07:21:11 GMT expires: - '-1' pragma: @@ -586,7 +589,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 36AB5993A7864D468695D36F29582BEF Ref B: TYO201100113049 Ref C: 2024-08-26T08:11:51Z' + - 'Ref A: ACD0B885BABF48108E8E96BC5D361AF0 Ref B: SG2AA1070301052 Ref C: 2026-02-11T07:21:11Z' status: code: 200 message: OK @@ -603,11 +606,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308124160759111?api-version=2024-11-01&t=639063912711831149&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=OdoMj5Or1AvHSE_qsNW7ZFpSfaxxzormFsdz3PueeOdRTpB8p0Y5mUBxuex_pUGvg7LmacMWT0pDSB2GhHIzvd-i8lMibgidfOSf39a00PMn7ilvuVHEIlhgjgrVh_wt6LbWZGzx7A-PLh0yS-5zXrlpy0pKOxg3_FzGVWeTENaZqy9y_Kq4qe5YpTzRnLnCFF7Tuc4VpnfmmZVtykeGrX3d4LpFd3UEeY9xKmXuoueIBzLx4eDn4WTtzVPsN4dnGsjlfePcDEarBgbU9XI82mJj4w580hedev65eFaFwHRYbBwgiwhN3YwLP8S920UYLk9g9I12kUiC0RJ0tyrBnQ&h=mQDe28hhVOL8_SqhBG0-OGXDkdT8fq-KmFzhTtMvc70 response: body: string: '{"status":"Running"}' @@ -619,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:23 GMT + - Wed, 11 Feb 2026 07:21:42 GMT expires: - '-1' pragma: @@ -633,7 +636,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4210D69CD8D348DF88662E3BBFADAB5B Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:23Z' + - 'Ref A: B68A881451144632A191EB16B24A0EBD Ref B: SG2AA1070305040 Ref C: 2026-02-11T07:21:42Z' status: code: 200 message: OK @@ -650,11 +653,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308124160759111?api-version=2024-11-01&t=639063912711831149&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=OdoMj5Or1AvHSE_qsNW7ZFpSfaxxzormFsdz3PueeOdRTpB8p0Y5mUBxuex_pUGvg7LmacMWT0pDSB2GhHIzvd-i8lMibgidfOSf39a00PMn7ilvuVHEIlhgjgrVh_wt6LbWZGzx7A-PLh0yS-5zXrlpy0pKOxg3_FzGVWeTENaZqy9y_Kq4qe5YpTzRnLnCFF7Tuc4VpnfmmZVtykeGrX3d4LpFd3UEeY9xKmXuoueIBzLx4eDn4WTtzVPsN4dnGsjlfePcDEarBgbU9XI82mJj4w580hedev65eFaFwHRYbBwgiwhN3YwLP8S920UYLk9g9I12kUiC0RJ0tyrBnQ&h=mQDe28hhVOL8_SqhBG0-OGXDkdT8fq-KmFzhTtMvc70 response: body: string: '{"status":"Succeeded"}' @@ -666,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:54 GMT + - Wed, 11 Feb 2026 07:22:14 GMT expires: - '-1' pragma: @@ -680,7 +683,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1A7EB10EECA2451A9BEF22DDF73A5A0C Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:54Z' + - 'Ref A: BDA9A69792BE49AEB05567F8B4F09408 Ref B: SG2AA1040517023 Ref C: 2026-02-11T07:22:13Z' status: code: 200 message: OK @@ -697,14 +700,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","name":"vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10767264860064875351","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:12:46.9546813Z","duration":"PT56.8844569S","correlationId":"2f4f8333-2045-453b-abe4-8db63c37f776","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testdcd94","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testdcd94Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testdcd94IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2024-08-26T08:12:04.8176232+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"487f4b67-97cb-45b5-b063-34b7b8ee14c6","platformFaultDomainCount":5,"timeCreated":"2024-08-26T08:12:04.8176232+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_Uhv9pqIggIttU2IXOUBdsaDub8rGUcp8","name":"vmss_deploy_Uhv9pqIggIttU2IXOUBdsaDub8rGUcp8","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11659398502171664894","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-11T07:22:00.2534481Z","duration":"PT50.8672463S","correlationId":"90d40cfa-a509-40e3-8c55-5f9a8eaccf27","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testd5b0a","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testd5b0aNic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testd5b0aIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2026-02-11T07:21:20.8279222+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ad04b3a2-c87c-4347-ae40-67430f9f3c51","platformFaultDomainCount":5,"timeCreated":"2026-02-11T07:21:20.8279222+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' headers: cache-control: - no-cache @@ -713,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:55 GMT + - Wed, 11 Feb 2026 07:22:14 GMT expires: - '-1' pragma: @@ -727,7 +730,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A21AE06E5AED47E3BEDCBDCBE9CBA662 Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:55Z' + - 'Ref A: A0A2E1F87EEB4BF6B20DF4E093E83962 Ref B: SG2AA1040519034 Ref C: 2026-02-11T07:22:14Z' status: code: 200 message: OK @@ -744,23 +747,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2024-08-26T08:11:07Z","module":"vm","DateCreated":"2024-08-26T08:11:13Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-11T07:20:19Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '500' + - '424' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:56 GMT + - Wed, 11 Feb 2026 07:22:16 GMT expires: - '-1' pragma: @@ -774,7 +777,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FD2133AE578B4CA9AA30F16F506E5B67 Ref B: TYO201100115033 Ref C: 2024-08-26T08:12:56Z' + - 'Ref A: 0715239ECAF943C7A599C1A842E2D2EA Ref B: SG2AA1040516062 Ref C: 2026-02-11T07:22:15Z' status: code: 200 message: OK @@ -791,16 +794,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -809,7 +812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:56 GMT + - Wed, 11 Feb 2026 07:22:16 GMT expires: - '-1' pragma: @@ -820,12 +823,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/407b20fb-1574-41aa-894f-9b1310eda133 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C74FC51D50104ED891E0D13E50ECA72E Ref B: TYO201100113047 Ref C: 2024-08-26T08:12:57Z' + - 'Ref A: D02665679FB04299BCB25CAD36782F2C Ref B: SG2AA1040520042 Ref C: 2026-02-11T07:22:16Z' status: code: 200 message: OK @@ -842,37 +847,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:58 GMT + - Wed, 11 Feb 2026 07:22:17 GMT expires: - '-1' pragma: @@ -883,12 +885,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/e792f2bb-804d-48db-a475-4d9c93c19421 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73956 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73981 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3E79CB97B1344C70847635AE8FB28264 Ref B: TYO201100117035 Ref C: 2024-08-26T08:12:58Z' + - 'Ref A: 6EA4DB7635AB4E9285A8B562D5A92B04 Ref B: SG2AA1040512029 Ref C: 2026-02-11T07:22:17Z' status: code: 200 message: OK @@ -905,23 +909,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts?api-version=2025-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-08-26T08:11:13.5493262Z","key2":"2024-08-26T08:11:13.5493262Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-26T08:11:14.8929934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-26T08:11:14.8929934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-08-26T08:11:13.4243591Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-02-11T07:20:28.5156476Z","key2":"2026-02-11T07:20:28.5156476Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-11T07:20:28.5312733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-11T07:20:28.5312733Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2026-02-11T07:20:28.2969694Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '1361' + - '1399' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:59 GMT + - Wed, 11 Feb 2026 07:22:18 GMT expires: - '-1' pragma: @@ -932,10 +936,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - cb303bd2-4425-4c3d-ad23-c93e94c317b4 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AF0671C8172C4307826E344405DA5769 Ref B: TYO201100113009 Ref C: 2024-08-26T08:12:58Z' + - 'Ref A: D68D7FCDE0904365BAA1A6BF9D6C5C78 Ref B: SG2AA1040519031 Ref C: 2026-02-11T07:22:18Z' status: code: 200 message: OK @@ -952,14 +958,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?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 @@ -967,8 +973,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -976,8 +985,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -985,8 +997,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -994,8 +1009,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -1003,53 +1021,130 @@ 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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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":"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":"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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1057,9 +1152,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1067,9 +1163,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1077,41 +1174,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1119,63 +1216,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1183,18 +1287,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1202,9 +1308,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -1212,9 +1319,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1222,9 +1330,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1232,9 +1341,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1242,9 +1352,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1252,18 +1363,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -1271,9 +1384,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -1281,44 +1395,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -1326,18 +1447,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1345,225 +1468,260 @@ 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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","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 + 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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US + 2 EUAP"],"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","East US + 2 EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","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 @@ -1571,34 +1729,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1606,31 +1771,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1638,40 +1803,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1679,15 +1845,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1695,9 +1856,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -1705,15 +1867,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1721,18 +1878,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"],"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -1740,15 +1899,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1756,9 +1910,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1766,9 +1921,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -1776,9 +1932,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1786,9 +1943,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1796,9 +1954,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1806,31 +1965,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1838,9 +1997,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"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 @@ -1848,9 +2019,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-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","Central US EUAP","East US 2 EUAP"],"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 @@ -1858,9 +2041,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1868,235 +2052,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2104,15 +2314,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2120,18 +2325,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -2139,9 +2346,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -2149,18 +2357,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2168,111 +2378,162 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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":"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":"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, + 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":["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 + 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":["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 + 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":["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, + 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":"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 - North","East US","West India","East US 2","Australia 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"],"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, + SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea + South","France Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/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"}' + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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":"virtualNetworkAppliances","locations":["East + US 2 EUAP","Central US EUAP","West US","East US","East Asia","North Europe","West + Europe","East US 2","West Central US","UK South"],"apiVersions":["2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '226271' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:01 GMT + - Wed, 11 Feb 2026 07:22:20 GMT expires: - '-1' pragma: @@ -2286,7 +2547,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 58AA34727C114CA58ECF4DEF35201D20 Ref B: TYO201100113033 Ref C: 2024-08-26T08:13:00Z' + - 'Ref A: 35521127FB5A407A8F329A86F4C3C8F3 Ref B: SG2AA1070305031 Ref C: 2026-02-11T07:22:18Z' status: code: 200 message: OK @@ -2303,9 +2564,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -2321,7 +2582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:01 GMT + - Wed, 11 Feb 2026 07:22:21 GMT expires: - '-1' pragma: @@ -2335,7 +2596,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 4908C6B2A4374ECD900F47CF3C538D1F Ref B: TYO201100114017 Ref C: 2024-08-26T08:13:02Z' + - 'Ref A: 5FC181A157204DF2A085895F192535A1 Ref B: SG2AA1040513036 Ref C: 2026-02-11T07:22:20Z' status: code: 404 message: Not Found @@ -2352,16 +2613,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -2370,7 +2631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:02 GMT + - Wed, 11 Feb 2026 07:22:21 GMT expires: - '-1' pragma: @@ -2381,12 +2642,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/b0bec7b7-228d-4ac4-9532-ce766cfdb976 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7B9CC5118EDD46CFB57105EAD7D7452E Ref B: TYO201100114009 Ref C: 2024-08-26T08:13:02Z' + - 'Ref A: 2DBDF311B2AF46EAB9308EBCF8FEADE1 Ref B: SG2AA1070303029 Ref C: 2026-02-11T07:22:22Z' status: code: 200 message: OK @@ -2403,37 +2666,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:03 GMT + - Wed, 11 Feb 2026 07:22:24 GMT expires: - '-1' pragma: @@ -2444,12 +2704,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/3d03765c-2546-429e-9de4-36681d7ab709 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73955 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73980 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E24A68FDE05141DD83DEA529FCC1E410 Ref B: TYO201100114025 Ref C: 2024-08-26T08:13:03Z' + - 'Ref A: 13419E0B43FF4A4F8C3B0EEAEB0F2538 Ref B: SG2AA1070301025 Ref C: 2026-02-11T07:22:22Z' status: code: 200 message: OK @@ -2466,16 +2728,16 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.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]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -2484,7 +2746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:03 GMT + - Wed, 11 Feb 2026 07:22:24 GMT expires: - '-1' pragma: @@ -2495,12 +2757,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/94e71f4b-1688-46e8-8191-87835d23faef x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8060F45E43234AD2804BE6E6628053B4 Ref B: TYO201151004060 Ref C: 2024-08-26T08:13:04Z' + - 'Ref A: 48EC3D2045AF4A46BB257407389D3258 Ref B: SG2AA1070306034 Ref C: 2026-02-11T07:22:24Z' status: code: 200 message: OK @@ -2517,37 +2781,34 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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\": \"IsHibernateSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\": + {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '984' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:04 GMT + - Wed, 11 Feb 2026 07:22:25 GMT expires: - '-1' pragma: @@ -2558,12 +2819,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/afa5a297-c249-4bad-9d54-44c377206077 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73954 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B8B4F39B8CFE466EA5448A80AADE5C78 Ref B: TYO201151002031 Ref C: 2024-08-26T08:13:05Z' + - 'Ref A: 1F3E902D84904901A8DA1FA6CBE8A7C2 Ref B: SG2AA1070304031 Ref C: 2026-02-11T07:22:25Z' status: code: 200 message: OK @@ -2580,14 +2843,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?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":"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 @@ -2595,8 +2858,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2604,8 +2870,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2613,8 +2882,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2622,8 +2894,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2631,53 +2906,130 @@ 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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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":"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":"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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2685,9 +3037,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2695,9 +3048,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2705,41 +3059,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2747,63 +3101,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2811,18 +3172,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2830,9 +3193,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2840,9 +3204,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2850,9 +3215,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2860,9 +3226,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2870,9 +3237,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2880,18 +3248,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -2899,9 +3269,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2909,44 +3280,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -2954,18 +3332,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2973,225 +3353,260 @@ 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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","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 + 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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US + 2 EUAP"],"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","East US + 2 EUAP"],"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","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","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 @@ -3199,34 +3614,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3234,31 +3656,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3266,40 +3688,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3307,15 +3730,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3323,9 +3741,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -3333,15 +3752,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -3349,18 +3763,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"],"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -3368,15 +3784,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3384,9 +3795,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3394,9 +3806,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -3404,9 +3817,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -3414,9 +3828,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -3424,61 +3839,86 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionAnalyzers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["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","Central US EUAP","East US 2 EUAP"],"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","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2024-07-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/agents","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central US EUAP","East US 2 EUAP"],"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 @@ -3486,9 +3926,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -3496,235 +3937,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3732,15 +4199,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3748,18 +4210,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -3767,9 +4231,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -3777,18 +4242,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -3796,111 +4263,162 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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":"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":"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, + 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":["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 + 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":["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 + 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":["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, + 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":"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 - North","East US","West India","East US 2","Australia 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"],"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, + SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea + South","France Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/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"}' + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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":"virtualNetworkAppliances","locations":["East + US 2 EUAP","Central US EUAP","West US","East US","East Asia","North Europe","West + Europe","East US 2","West Central US","UK South"],"apiVersions":["2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195339' + - '226271' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:07 GMT + - Wed, 11 Feb 2026 07:22:26 GMT expires: - '-1' pragma: @@ -3914,7 +4432,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DA3BBDE44B0A47069D89FA180654D65D Ref B: TYO201151004025 Ref C: 2024-08-26T08:13:06Z' + - 'Ref A: 3D63940EC6DE461E847D676A8A4F453F Ref B: SG2AA1040517025 Ref C: 2026-02-11T07:22:25Z' status: code: 200 message: OK @@ -3931,11 +4449,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -3949,7 +4467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:08 GMT + - Wed, 11 Feb 2026 07:22:27 GMT expires: - '-1' pragma: @@ -3963,7 +4481,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: BB7265697A654CD5BA8037C6F0635789 Ref B: TYO201151002054 Ref C: 2024-08-26T08:13:08Z' + - 'Ref A: FDE74021BAD14D5486E1FC58732F6E21 Ref B: SG2AA1070306054 Ref C: 2026-02-11T07:22:27Z' status: code: 404 message: Not Found @@ -3971,7 +4489,7 @@ interactions: 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.Storage/storageAccounts", "name": "vhdstorage79e96c4e4cf806", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstoragef5f9efb44ca9dd", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vnet1", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, @@ -3989,16 +4507,16 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"}}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806", + {"apiVersion": "2025-04-01", "type": "Microsoft.Compute/virtualMachines", "name": + "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragef5f9efb44ca9dd", "Microsoft.Network/networkInterfaces/testdiagvmVMNic"], "properties": {"hardwareProfile": - {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": + {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": "osdisk_79e96c4e4c", "caching": "ReadWrite", "vhd": {"uri": - "https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd"}}, + "fromImage", "name": "osdisk_f5f9efb44c", "caching": "ReadWrite", "vhd": {"uri": + "https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "testdiagvm", + "16.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "testdiagvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "TestTest12#$"}}, "mode": "incremental"}}' @@ -4012,30 +4530,30 @@ interactions: Connection: - keep-alive Content-Length: - - '3394' + - '3392' Content-Type: - application/json ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","name":"vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4493899114347156105","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:13:12.15255Z","duration":"PT0.0005158S","correlationId":"94f5f14e-1b6a-4b9c-887a-d51704493d63","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage79e96c4e4cf806"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BD4gYj09CaYP1XFnPz1Z39z2tLQ9qyDW","name":"vm_deploy_BD4gYj09CaYP1XFnPz1Z39z2tLQ9qyDW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16616836112333046312","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-11T07:22:29.5579108Z","duration":"PT0.0006329S","correlationId":"10debf96-b88e-45ef-b611-83581cdf5339","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef5f9efb44ca9dd","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef5f9efb44ca9dd"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58/operationStatuses/08584769468952086328?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BD4gYj09CaYP1XFnPz1Z39z2tLQ9qyDW/operationStatuses/08584308123359151778?api-version=2024-11-01&t=639063913502453907&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtRIJfaVmTyEbSouLA2SVCi5zTgbCmYnzZ_NjRXhUdc3K5vMqI-jDVzPdnmG22D5LYZDsoiivocelYRNpF5aUVBaXJ4A5NJACSHfoXlPzXxg5E3MhAkjX_QEifK5_On5mOrmwR_GJLbmvvBegE9JeJwMDEFkO1dK5tOoCvY2Ld01a2nQY9jDaAKHrI_gn60HcFs7EWr_QUze_mkBofwOHomrE_oFtItRei7hJbu6acAGZ7aLrLC6tDuRytI121Zz5UTMIckr5CAz1RzMHdrbY-Xm6-qRTTxqSt3q--CpuRsqrKbyTKuD4sxzCCyWQEzFeJ-eB42rapbwEFQrZqs5kA&h=OEh5pL-mT0wecjCMg2CJagdhL7a5vfIJ2cLczRobA7Y cache-control: - no-cache content-length: - - '3021' + - '3024' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Wed, 11 Feb 2026 07:22:30 GMT expires: - '-1' pragma: @@ -4047,13 +4565,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.568.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 098376BFBDA24D10A8CE658F621FAE53 Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:09Z' + - 'Ref A: 412FABF481D84401BE78A20B25CF1BCF Ref B: SG2AA1040512054 Ref C: 2026-02-11T07:22:28Z' status: code: 201 message: Created @@ -4070,11 +4588,58 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308123359151778?api-version=2024-11-01&t=639063913502453907&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtRIJfaVmTyEbSouLA2SVCi5zTgbCmYnzZ_NjRXhUdc3K5vMqI-jDVzPdnmG22D5LYZDsoiivocelYRNpF5aUVBaXJ4A5NJACSHfoXlPzXxg5E3MhAkjX_QEifK5_On5mOrmwR_GJLbmvvBegE9JeJwMDEFkO1dK5tOoCvY2Ld01a2nQY9jDaAKHrI_gn60HcFs7EWr_QUze_mkBofwOHomrE_oFtItRei7hJbu6acAGZ7aLrLC6tDuRytI121Zz5UTMIckr5CAz1RzMHdrbY-Xm6-qRTTxqSt3q--CpuRsqrKbyTKuD4sxzCCyWQEzFeJ-eB42rapbwEFQrZqs5kA&h=OEh5pL-mT0wecjCMg2CJagdhL7a5vfIJ2cLczRobA7Y + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 11 Feb 2026 07:22:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D1BC65ECD4B143DDB50655596BAE0D1A Ref B: SG2AA1070305054 Ref C: 2026-02-11T07:22:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308123359151778?api-version=2024-11-01&t=639063913502453907&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtRIJfaVmTyEbSouLA2SVCi5zTgbCmYnzZ_NjRXhUdc3K5vMqI-jDVzPdnmG22D5LYZDsoiivocelYRNpF5aUVBaXJ4A5NJACSHfoXlPzXxg5E3MhAkjX_QEifK5_On5mOrmwR_GJLbmvvBegE9JeJwMDEFkO1dK5tOoCvY2Ld01a2nQY9jDaAKHrI_gn60HcFs7EWr_QUze_mkBofwOHomrE_oFtItRei7hJbu6acAGZ7aLrLC6tDuRytI121Zz5UTMIckr5CAz1RzMHdrbY-Xm6-qRTTxqSt3q--CpuRsqrKbyTKuD4sxzCCyWQEzFeJ-eB42rapbwEFQrZqs5kA&h=OEh5pL-mT0wecjCMg2CJagdhL7a5vfIJ2cLczRobA7Y response: body: string: '{"status":"Running"}' @@ -4086,7 +4651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Wed, 11 Feb 2026 07:23:01 GMT expires: - '-1' pragma: @@ -4100,7 +4665,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DEA1EC7403474EF2BF2B649598D718F8 Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:13Z' + - 'Ref A: DC1815DC44F94CC7B4DB199377C2D3B8 Ref B: SG2AA1070302054 Ref C: 2026-02-11T07:23:01Z' status: code: 200 message: OK @@ -4117,11 +4682,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308123359151778?api-version=2024-11-01&t=639063913502453907&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtRIJfaVmTyEbSouLA2SVCi5zTgbCmYnzZ_NjRXhUdc3K5vMqI-jDVzPdnmG22D5LYZDsoiivocelYRNpF5aUVBaXJ4A5NJACSHfoXlPzXxg5E3MhAkjX_QEifK5_On5mOrmwR_GJLbmvvBegE9JeJwMDEFkO1dK5tOoCvY2Ld01a2nQY9jDaAKHrI_gn60HcFs7EWr_QUze_mkBofwOHomrE_oFtItRei7hJbu6acAGZ7aLrLC6tDuRytI121Zz5UTMIckr5CAz1RzMHdrbY-Xm6-qRTTxqSt3q--CpuRsqrKbyTKuD4sxzCCyWQEzFeJ-eB42rapbwEFQrZqs5kA&h=OEh5pL-mT0wecjCMg2CJagdhL7a5vfIJ2cLczRobA7Y response: body: string: '{"status":"Running"}' @@ -4133,7 +4698,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:44 GMT + - Wed, 11 Feb 2026 07:23:31 GMT expires: - '-1' pragma: @@ -4147,7 +4712,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 70064AC05E0C4BF2A132E6077A38189F Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:43Z' + - 'Ref A: D1AA48A5D3C848E69FC220356583A70F Ref B: SG2AA1070304062 Ref C: 2026-02-11T07:23:32Z' status: code: 200 message: OK @@ -4164,11 +4729,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584308123359151778?api-version=2024-11-01&t=639063913502453907&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=GtRIJfaVmTyEbSouLA2SVCi5zTgbCmYnzZ_NjRXhUdc3K5vMqI-jDVzPdnmG22D5LYZDsoiivocelYRNpF5aUVBaXJ4A5NJACSHfoXlPzXxg5E3MhAkjX_QEifK5_On5mOrmwR_GJLbmvvBegE9JeJwMDEFkO1dK5tOoCvY2Ld01a2nQY9jDaAKHrI_gn60HcFs7EWr_QUze_mkBofwOHomrE_oFtItRei7hJbu6acAGZ7aLrLC6tDuRytI121Zz5UTMIckr5CAz1RzMHdrbY-Xm6-qRTTxqSt3q--CpuRsqrKbyTKuD4sxzCCyWQEzFeJ-eB42rapbwEFQrZqs5kA&h=OEh5pL-mT0wecjCMg2CJagdhL7a5vfIJ2cLczRobA7Y response: body: string: '{"status":"Succeeded"}' @@ -4180,7 +4745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:14 GMT + - Wed, 11 Feb 2026 07:24:03 GMT expires: - '-1' pragma: @@ -4194,7 +4759,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 15FEA6E998544AF0A9FB43A29F497E0C Ref B: TYO201100115017 Ref C: 2024-08-26T08:14:14Z' + - 'Ref A: 4B4C2CF4A905417C9465E28C45FF4639 Ref B: SG2AA1070301036 Ref C: 2026-02-11T07:24:02Z' status: code: 200 message: OK @@ -4211,23 +4776,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","name":"vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4493899114347156105","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:14:10.6418948Z","duration":"PT58.4898606S","correlationId":"94f5f14e-1b6a-4b9c-887a-d51704493d63","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage79e96c4e4cf806"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_BD4gYj09CaYP1XFnPz1Z39z2tLQ9qyDW","name":"vm_deploy_BD4gYj09CaYP1XFnPz1Z39z2tLQ9qyDW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16616836112333046312","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-11T07:23:39.2228243Z","duration":"PT1M9.6649135S","correlationId":"10debf96-b88e-45ef-b611-83581cdf5339","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef5f9efb44ca9dd","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef5f9efb44ca9dd"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef5f9efb44ca9dd"}]}}' headers: cache-control: - no-cache content-length: - - '4149' + - '4151' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:15 GMT + - Wed, 11 Feb 2026 07:24:03 GMT expires: - '-1' pragma: @@ -4239,9 +4804,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: BA616976B60347CB87D15726A8A8AE43 Ref B: TYO201100115017 Ref C: 2024-08-26T08:14:15Z' + - 'Ref A: E959104B40D94C77806D26187BAAE67D Ref B: SG2AA1040519060 Ref C: 2026-02-11T07:24:03Z' status: code: 200 message: OK @@ -4258,63 +4823,61 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\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\"\ - : \"2024-08-26T08:14:16+00:00\"\r\n }\r\n ]\r\n },\r\n\ - \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\"\ - ,\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:13:38.7255145+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:14:08.3357446+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:13:38.2568172+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"6a58486d-2041-45b1-b635-30cded6f1080\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-11T07:23:42+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f5f9efb44c\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-11T07:22:54.9543754+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\": \"2026-02-11T07:23:37.3456112+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\": \"2026-02-11T07:22:54.6261956+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3042' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:15 GMT + - Wed, 11 Feb 2026 07:24:03 GMT expires: - '-1' pragma: @@ -4325,12 +4888,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;23996,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9CF75C3596664ABBBB233501B1C79F76 Ref B: TYO201100117007 Ref C: 2024-08-26T08:14:16Z' + - 'Ref A: 75E2B7D282814723A56BD550B4596BE0 Ref B: SG2AA1070303034 Ref C: 2026-02-11T07:24:04Z' status: code: 200 message: '' @@ -4347,50 +4912,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"testdiagvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - ,\r\n \"etag\": \"W/\\\"959601a4-409b-44f0-bc03-a00a67a9600f\\\"\",\r\n \ - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"5348e73c-d55d-4325-8c53-1f5965365dcb\",\r\n \ - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigtestdiagvm\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - ,\r\n \"etag\": \"W/\\\"959601a4-409b-44f0-bc03-a00a67a9600f\\\"\"\ - ,\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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\": \"x24ihe3ggteuhhgyjeba4psdvb.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-59-80-FD\",\r\n \"vnetEncryptionSupported\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - \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":"testdiagvmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","etag":"W/\"87343924-4a16-4a3f-b332-3e2651af4696\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"464c94ba-c73e-4e61-bfde-d72f2f625eaf","ipConfigurations":[{"name":"ipconfigtestdiagvm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm","etag":"W/\"87343924-4a16-4a3f-b332-3e2651af4696\"","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_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"gwx225pb20ye3fk3ugjx1h5sca.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-31-A3-6E","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2597' + - '2152' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:17 GMT + - Wed, 11 Feb 2026 07:24:04 GMT etag: - - W/"959601a4-409b-44f0-bc03-a00a67a9600f" + - W/"87343924-4a16-4a3f-b332-3e2651af4696" expires: - '-1' pragma: @@ -4402,14 +4942,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9609c5f2-f5dd-4359-a669-32464c554b03 + - 488a14b5-afb3-45ca-9a58-795b1bba4644 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E02A6DBEE7B441C8BF1A1682E682D8C9 Ref B: TYO201100113021 Ref C: 2024-08-26T08:14:16Z' + - 'Ref A: 125BD244F8FB446A9289362F36338986 Ref B: SG2AA1070302025 Ref C: 2026-02-11T07:24:04Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4423,35 +4963,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"testdiagvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP\"\ - ,\r\n \"etag\": \"W/\\\"9f676f03-ca1c-4234-ab55-731ea9ba5925\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef759a59-23b2-46b0-85d2-045cc345663d\"\ - ,\r\n \"ipAddress\": \"13.64.193.179\",\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - \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":"testdiagvmPublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","etag":"W/\"a0e5304d-2fe2-4309-9768-1115a9cdbe3a\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d8e01dbb-943e-4eec-b81f-565500bd56d9","ipAddress":"172.185.27.72","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '990' + - '855' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:18 GMT + - Wed, 11 Feb 2026 07:24:05 GMT etag: - - W/"9f676f03-ca1c-4234-ab55-731ea9ba5925" + - W/"a0e5304d-2fe2-4309-9768-1115a9cdbe3a" expires: - '-1' pragma: @@ -4463,11 +4993,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41c3f39b-5537-4307-9004-2247a26f1313 + - d67ba265-fad8-4e46-81f7-52133ac275e1 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4495444499894E9880DEA7FAD6E681FF Ref B: TYO201100117037 Ref C: 2024-08-26T08:14:18Z' + - 'Ref A: E8F8083C3B3C44298583E3E1E5F85469 Ref B: SG2AA1040516031 Ref C: 2026-02-11T07:24:05Z' status: code: 200 message: OK @@ -4485,30 +5015,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"effc6369-6b0b-4048-8e5e-6b37bf66f6d2\\\"\",\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_VM_VMSS_DIAGNOSTICS_EXTENSIONNL2QYULJ3ZSYLQUFV7JDZTKEMJMOMPXZHOQM3/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"680f7a54-4a18-41ec-ac27-69c83b2b7b4f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONSX3RS3DLHJGE2MV4Y3MLY6CM7DFZHC3VMILIO/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '905' + - '761' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:20 GMT + - Wed, 11 Feb 2026 07:24:08 GMT etag: - - W/"effc6369-6b0b-4048-8e5e-6b37bf66f6d2" + - W/"680f7a54-4a18-41ec-ac27-69c83b2b7b4f" expires: - '-1' pragma: @@ -4520,14 +5043,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6d771a9-a566-46a7-ac36-190defdfc219 + - 27c23f9d-f7d4-4759-ac25-1cb6eeadcfaa + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/65f10673-5600-44ff-8067-63c24a536093 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B9DCBC90C19849049E42738BA9C8A8B2 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: 41B15F36532041FBAC6672AEED90AE9F Ref B: SG2AA1070304060 Ref C: 2026-02-11T07:24:08Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": @@ -4549,33 +5074,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"8211b20d-403d-4ae3-969e-b11cb4f10312\\\"\",\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"83906370-5ea6-4350-800a-94134712439c\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}],"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/39bad533-7c10-4d8d-9bee-d681533c83d3?api-version=2024-01-01&t=638602568612983354&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=j4bwTtAE5MT3t-FONuxMElNLFB2pLsMqqY6ubJfiDhP-oclYjrduD1VVqGzrc8GpsL8ElYoNYvsyBxkDrManpByMb08yyeYStYWSra-zI7Rlq-3ppiH_6c1EPrK1o7NGnL5OoC7Yu5IHX32JrgAisJ6fJxC5cjPZtQNX2zaTBXqtqL-pBQnXSwLYLRNf8k_urb9nDZErYxGZUq_VZ3bff4HcCcj44a_TJa2UrWeZD8i1TLSTypc-4T_JBN_ToYaPsoe40FLJxRuHmBtoawGgXSD1S0nad8ulxSi-Hlo6V_eahzTgwP771qi3XsVdH37PROl6-GERlX2XABkPqe5Dxw&h=ZdUb9dKMUQmt0B6rX48XM_phdlNq5hZD0o6acCZerDY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1ddfa00a-3057-4e0b-8e99-c16ba5abfa62?api-version=2024-07-01&t=639063914503766229&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Fru5tt5iuYDX-f0e7mWFWPFr09hoHvnVpgKOtDGKzKelGOOHwbgpPyqyq_g_YfCIGlbDt-3t7T6h6tXb-I3QLgyKVlZvJc6PC_6btdHItSlhw_kOmwogfEOfFTXG87PBssJaHX1RdUa7ct-f3YCsKMfEtPSx3AAhcCfTPCQO3h3ufLhllYb2FcYEc9T5KmYgiOXSUAWEvv5hw7wNqTvwlQDHxe5BpPCyZzDR3R3y6l4801WWIkO_viwVC-7tq8s0oTBWxo905UJ7kp5_fpfEs3G82082QDjcSplUmc6O9ycwMlQiA9aqOgAOZyM1RcD0i_JBfXhtC0_Q5RkyC3xJDQ&h=GZtrueqSleaxnQmUEeCNG990MgOTtsjBsT2akfX54cY cache-control: - no-cache content-length: - - '910' + - '759' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Wed, 11 Feb 2026 07:24:10 GMT expires: - '-1' pragma: @@ -4587,13 +5104,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c99eca04-a1d3-4d01-9464-b5cda1573fda + - 7d115fcf-6aba-4fec-ad88-b33e1df72f6c + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/d4417014-d9c0-4eca-a1ad-ff531d1a9028 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 242F0D5AFE794D64BF588419C1803E2A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: D7D33282B00947A3A4E22FC1D79F4462 Ref B: SG2AA1040516023 Ref C: 2026-02-11T07:24:09Z' status: code: 200 message: OK @@ -4611,21 +5130,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39bad533-7c10-4d8d-9bee-d681533c83d3?api-version=2024-01-01&t=638602568612983354&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=j4bwTtAE5MT3t-FONuxMElNLFB2pLsMqqY6ubJfiDhP-oclYjrduD1VVqGzrc8GpsL8ElYoNYvsyBxkDrManpByMb08yyeYStYWSra-zI7Rlq-3ppiH_6c1EPrK1o7NGnL5OoC7Yu5IHX32JrgAisJ6fJxC5cjPZtQNX2zaTBXqtqL-pBQnXSwLYLRNf8k_urb9nDZErYxGZUq_VZ3bff4HcCcj44a_TJa2UrWeZD8i1TLSTypc-4T_JBN_ToYaPsoe40FLJxRuHmBtoawGgXSD1S0nad8ulxSi-Hlo6V_eahzTgwP771qi3XsVdH37PROl6-GERlX2XABkPqe5Dxw&h=ZdUb9dKMUQmt0B6rX48XM_phdlNq5hZD0o6acCZerDY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1ddfa00a-3057-4e0b-8e99-c16ba5abfa62?api-version=2024-07-01&t=639063914503766229&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Fru5tt5iuYDX-f0e7mWFWPFr09hoHvnVpgKOtDGKzKelGOOHwbgpPyqyq_g_YfCIGlbDt-3t7T6h6tXb-I3QLgyKVlZvJc6PC_6btdHItSlhw_kOmwogfEOfFTXG87PBssJaHX1RdUa7ct-f3YCsKMfEtPSx3AAhcCfTPCQO3h3ufLhllYb2FcYEc9T5KmYgiOXSUAWEvv5hw7wNqTvwlQDHxe5BpPCyZzDR3R3y6l4801WWIkO_viwVC-7tq8s0oTBWxo905UJ7kp5_fpfEs3G82082QDjcSplUmc6O9ycwMlQiA9aqOgAOZyM1RcD0i_JBfXhtC0_Q5RkyC3xJDQ&h=GZtrueqSleaxnQmUEeCNG990MgOTtsjBsT2akfX54cY 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:14:21 GMT + - Wed, 11 Feb 2026 07:24:11 GMT expires: - '-1' pragma: @@ -4637,14 +5156,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4b30d81-bd4a-4869-931d-81cef2d6605f + - 86a5caee-7acf-4bbc-99de-376fe72baa40 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0c2007ff-aff3-4b39-b31b-ba06af3b506e x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: EC4EBFDA4D1F4BB98E79DBC73C5F4CA9 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: 968E7F9BF7A14C8D894B8CBA624DB48F Ref B: SG2AA1070304062 Ref C: 2026-02-11T07:24:10Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4659,31 +5180,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"2957582c-0256-49f1-b6cf-7fc19bdaa0a7\\\"\",\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_VM_VMSS_DIAGNOSTICS_EXTENSIONNL2QYULJ3ZSYLQUFV7JDZTKEMJMOMPXZHOQM3/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"e6e0d500-9d30-4d3d-9404-f6c8eca7956f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONSX3RS3DLHJGE2MV4Y3MLY6CM7DFZHC3VMILIO/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '942' + - '791' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Wed, 11 Feb 2026 07:24:12 GMT etag: - - W/"2957582c-0256-49f1-b6cf-7fc19bdaa0a7" + - W/"e6e0d500-9d30-4d3d-9404-f6c8eca7956f" expires: - '-1' pragma: @@ -4695,11 +5208,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0dbaa8c8-2f78-442b-b952-0b790e81e5a0 + - bf7e26dc-0061-4f3a-8083-69ded636c42a + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/5457a619-ee3a-45ce-8cac-6d8b006fd1f2 x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 4929CDD15DFE4223A69ED60E5FAA793A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: 841C8107DAEB44848BF9D6056EA36D52 Ref B: SG2AA1040513023 Ref C: 2026-02-11T07:24:12Z' status: code: 200 message: OK @@ -4717,52 +5232,44 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd5b0a\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd5b0aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd5b0aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"ad04b3a2-c87c-4347-ae40-67430f9f3c51\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Wed, 11 Feb 2026 07:24:13 GMT etag: - '"3"' expires: @@ -4775,12 +5282,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;2399,Microsoft.Compute/GetVMScaleSetResource;34 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FAC3FB6238A840EE9ACE64A26088E760 Ref B: TYO201151003052 Ref C: 2024-08-26T08:14:22Z' + - 'Ref A: F42D6C80D7B54F66A3AB1DF421BA8E4F Ref B: SG2AA1070303054 Ref C: 2026-02-11T07:24:13Z' status: code: 200 message: '' @@ -4798,52 +5307,44 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd5b0a\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd5b0aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd5b0aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"ad04b3a2-c87c-4347-ae40-67430f9f3c51\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Wed, 11 Feb 2026 07:24:14 GMT etag: - '"3"' expires: @@ -4856,27 +5357,29 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;33 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2397,Microsoft.Compute/GetVMScaleSetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 969F4417B88E46CBA86520BFDE69C35B Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:23Z' + - 'Ref A: 7D4404450C7D42A5A2B35DA0C9916980 Ref B: SG2AA1040519060 Ref C: 2026-02-11T07:24:14Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier": + body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_B1ls", "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual"}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testdcd94", "adminUsername": + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testd5b0a", "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "testdcd94Nic", "properties": {"primary": true, "disableTcpStateTracking": false, + "testd5b0aNic", "properties": {"primary": true, "disableTcpStateTracking": false, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"}, - "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testdcd94IPConfig", + "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testd5b0aIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], @@ -5045,238 +5548,108 @@ interactions: Connection: - keep-alive Content-Length: - - '14679' + - '14677' Content-Type: - application/json ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd5b0a\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd5b0aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd5b0aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-11T07:24:17.252454+00:00\"\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"ad04b3a2-c87c-4347-ae40-67430f9f3c51\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-11T07:21:20.8279222+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/a683c72a-644e-4505-b82c-1b3799fbc11e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568697198559&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=IYvkh2yMZ7UMiY6Q4QOVaxiOgN9wRCiiRRciMYFHQvP24IQC2wxG5HWHAXBMgQa3Z0M6PR06KQABxiO7RX7oqEUp4c5vCOrrpxg5g8sEZ_WrGvZ8dUXhxN76L14ZQLq1C-oZSBxrlJXTGSdEBqevKDXSp7u3oeoPMqc_LqKsnSigI-5tN3j0FGRXFZsGYoyURrAPEmVkq3bl7kK5LyOAp66vNNrE2v-mOo0zjKYbwX51gZvgZWlve43MWbEwNf-z8foa2DMxQj7zfeF7zu_2tOM8Ff1EfP-3lxXYVuwgXfdEsgDK2G1JOYxWcRbknDv5BAiowG9KhpXKweKp2lZdpQ&h=SQz5DTKylT37AFyBa8_dyqP5M-fkWHbBAcYupBTbCiI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/254d97ad-f81b-4645-8b83-e33bb698e704?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914575686692&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=kbTZyQ51HCq-QZztIIif3Jsn3sgJhyjodOI9fdc10_1CZyFEurzL_hDJS2RZ2Cg2did4QAsv3VYDmiBoG9ua22JuM8Whg-Bj1NaJAGszoxFzFMnmuLOsdUzRxu84hoGPqmY3gjd3ZFo69YuOuqIX0SerH1FvpAqVYv0Im4rP9H4JkfjuFFeLVI8_7fOjxho3EQYGibAZSt6zvbGlrBPenE3aCTFaHMuPI9BWFLfyKx12RvdyCAW1eYcUX9FyU4zV5stDdXJO-V1rr92wtMr3RNKY5uS3wXqxdKrQyzPvX_KCSEE3MKOIl9rddMAtHO3lMLQVgq3XJU8VWSQqsinMBA&h=2OGt0rAj1qWs9VyahDm9pSJrNWfWYwvBy7hxe3PMT9A cache-control: - no-cache content-length: - - '14898' + - '14895' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:28 GMT + - Wed, 11 Feb 2026 07:24:17 GMT etag: - '"4"' expires: @@ -5289,6 +5662,10 @@ 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/1fe45b46-df06-45b2-9fe6-d047aedd6d62 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5298,7 +5675,7 @@ interactions: x-ms-request-charge: - '0' x-msedge-ref: - - 'Ref A: 103943B15FA5468C801437723F8A3A9A Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:23Z' + - 'Ref A: F5FD281401924B18AED2657FB70AAE51 Ref B: SG2AA1070306029 Ref C: 2026-02-11T07:24:14Z' status: code: 200 message: '' @@ -5316,23 +5693,23 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a683c72a-644e-4505-b82c-1b3799fbc11e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568697198559&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=IYvkh2yMZ7UMiY6Q4QOVaxiOgN9wRCiiRRciMYFHQvP24IQC2wxG5HWHAXBMgQa3Z0M6PR06KQABxiO7RX7oqEUp4c5vCOrrpxg5g8sEZ_WrGvZ8dUXhxN76L14ZQLq1C-oZSBxrlJXTGSdEBqevKDXSp7u3oeoPMqc_LqKsnSigI-5tN3j0FGRXFZsGYoyURrAPEmVkq3bl7kK5LyOAp66vNNrE2v-mOo0zjKYbwX51gZvgZWlve43MWbEwNf-z8foa2DMxQj7zfeF7zu_2tOM8Ff1EfP-3lxXYVuwgXfdEsgDK2G1JOYxWcRbknDv5BAiowG9KhpXKweKp2lZdpQ&h=SQz5DTKylT37AFyBa8_dyqP5M-fkWHbBAcYupBTbCiI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/254d97ad-f81b-4645-8b83-e33bb698e704?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914575686692&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=kbTZyQ51HCq-QZztIIif3Jsn3sgJhyjodOI9fdc10_1CZyFEurzL_hDJS2RZ2Cg2did4QAsv3VYDmiBoG9ua22JuM8Whg-Bj1NaJAGszoxFzFMnmuLOsdUzRxu84hoGPqmY3gjd3ZFo69YuOuqIX0SerH1FvpAqVYv0Im4rP9H4JkfjuFFeLVI8_7fOjxho3EQYGibAZSt6zvbGlrBPenE3aCTFaHMuPI9BWFLfyKx12RvdyCAW1eYcUX9FyU4zV5stDdXJO-V1rr92wtMr3RNKY5uS3wXqxdKrQyzPvX_KCSEE3MKOIl9rddMAtHO3lMLQVgq3XJU8VWSQqsinMBA&h=2OGt0rAj1qWs9VyahDm9pSJrNWfWYwvBy7hxe3PMT9A response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:29.3514229+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:14:29.8045577+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a683c72a-644e-4505-b82c-1b3799fbc11e\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:24:17.236822+00:00\",\r\n \"endTime\": + \"2026-02-11T07:24:17.6586988+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"254d97ad-f81b-4645-8b83-e33bb698e704\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Wed, 11 Feb 2026 07:24:17 GMT expires: - '-1' pragma: @@ -5343,12 +5720,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/a976d821-5166-4aaa-a31c-da967b8b3218 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14971 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9883AFC84B3347C9BE9763E0C3EAF55E Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:29Z' + - 'Ref A: E713BFB0327245AFB78A04C8658EADE4 Ref B: SG2AA1070306054 Ref C: 2026-02-11T07:24:17Z' status: code: 200 message: '' @@ -5366,228 +5747,98 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd5b0a\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd5b0aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd5b0aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-11T07:24:17.252454+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"ad04b3a2-c87c-4347-ae40-67430f9f3c51\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '14899' + - '14896' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Wed, 11 Feb 2026 07:24:18 GMT etag: - '"4"' expires: @@ -5600,12 +5851,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;2396,Microsoft.Compute/GetVMScaleSetResource;31 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2394,Microsoft.Compute/GetVMScaleSetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E367703C471342ADAA8258963DC03FEA Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:30Z' + - 'Ref A: EDE6AA136AC041C3A75AE99549571E75 Ref B: SG2AA1070306052 Ref C: 2026-02-11T07:24:18Z' status: code: 200 message: '' @@ -5627,7 +5880,7 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss/manualupgrade?api-version=2024-11-01 response: @@ -5637,17 +5890,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y cache-control: - no-cache content-length: - '0' date: - - Mon, 26 Aug 2024 08:14:31 GMT + - Wed, 11 Feb 2026 07:24:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602568716612997&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=JC3N042JG_X6cGC-anP3PVn1dHLHPpoGBSHEbZHuVMJKp8C7zG3HWaYvhtai4MCSwy5E302xJzMZEARfwVrcdGlm7BlXEPdyzPHVt5q3U-gCSq6u8u0wJ96WsFxBDJPhglTC5Qrn9Dse76m8xUVvBvSBrER_J62DM6aCc5ClVfdkalXmcjhhTf_1EodE2IWFdWUEYr_H5Rtt-u7fXhdpHopBF3KZSYx-GEuFYvTQ_bzm-5ZfUNOJEoo3dv5BhQooHCrpkPsgpWxSZAxXuzgTRswfuHJY2UNLmB0dOzWW8ndyxukhYAgymMvrM6uZcRco_oIIi_YIQiBlqyhaxu8gtw&h=Uo1cSbKxJXrM3iydlCfjwo13KIFFpTa96zdlnt-aPq0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y pragma: - no-cache strict-transport-security: @@ -5656,6 +5909,10 @@ 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/f672e564-558d-4f5b-8401-b36c7e1aa34f x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5665,7 +5922,7 @@ interactions: x-ms-request-charge: - '2' x-msedge-ref: - - 'Ref A: 6BB24265EBFC49CDB7CC08F629A4E2AB Ref B: TYO201151005029 Ref C: 2024-08-26T08:14:31Z' + - 'Ref A: 814B117B81414EDBA90FBC6A9B7BEB62 Ref B: SG2AA1070301025 Ref C: 2026-02-11T07:24:19Z' status: code: 202 message: '' @@ -5683,14 +5940,66 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y + response: + body: + string: "{\r\n \"startTime\": \"2026-02-11T07:24:20.5806378+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"030edb26-8714-4d0b-86f1-df1de50c137b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 11 Feb 2026 07:24: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-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/2ef57dff-f568-48b3-948c-f58b2a8b7d5a + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 368AC79F40144B6CA8BFDAB62F089E6E Ref B: SG2AA1070304029 Ref C: 2026-02-11T07:24:21Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss diagnostics set + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --settings --protected-settings + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:24:20.5806378+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"030edb26-8714-4d0b-86f1-df1de50c137b\"\r\n}" headers: cache-control: - no-cache @@ -5699,7 +6008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:31 GMT + - Wed, 11 Feb 2026 07:24:51 GMT expires: - '-1' pragma: @@ -5710,12 +6019,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/aa684dff-9766-44ee-b26d-3aa75d0b7fe9 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14970 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0AEFD0217E95480F9472F586B15014C2 Ref B: TYO201151005029 Ref C: 2024-08-26T08:14:31Z' + - 'Ref A: 79465483019B414F8989A12E40B798E4 Ref B: SG2AA1070302060 Ref C: 2026-02-11T07:24:51Z' status: code: 200 message: '' @@ -5733,14 +6046,13 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:24:20.5806378+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"030edb26-8714-4d0b-86f1-df1de50c137b\"\r\n}" headers: cache-control: - no-cache @@ -5749,7 +6061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:01 GMT + - Wed, 11 Feb 2026 07:25:22 GMT expires: - '-1' pragma: @@ -5760,12 +6072,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/82ace0fd-1b76-4d3f-bd9a-8d6f1bfe3d14 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14985 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6E4D4A0815F2462EA96B1F1E3AFA4880 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:02Z' + - 'Ref A: 08978CD681D849F19A5818E8CA64B9E3 Ref B: SG2AA1070306042 Ref C: 2026-02-11T07:25:22Z' status: code: 200 message: '' @@ -5783,14 +6099,14 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:15:32.2900438+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:24:20.5806378+00:00\",\r\n \"endTime\": + \"2026-02-11T07:25:51.3476249+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"030edb26-8714-4d0b-86f1-df1de50c137b\"\r\n}" headers: cache-control: - no-cache @@ -5799,7 +6115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:31 GMT + - Wed, 11 Feb 2026 07:25:52 GMT expires: - '-1' pragma: @@ -5810,12 +6126,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/0139bdf2-4267-4714-9840-2e91fac6978d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14973 + - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DFD3B89E5C044C93B6F27D02F6FC2326 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:32Z' + - 'Ref A: 9BCDC0A1A2D842AE9642BFF34E75E885 Ref B: SG2AA1070301062 Ref C: 2026-02-11T07:25:53Z' status: code: 200 message: '' @@ -5833,9 +6153,9 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602568716612997&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=JC3N042JG_X6cGC-anP3PVn1dHLHPpoGBSHEbZHuVMJKp8C7zG3HWaYvhtai4MCSwy5E302xJzMZEARfwVrcdGlm7BlXEPdyzPHVt5q3U-gCSq6u8u0wJ96WsFxBDJPhglTC5Qrn9Dse76m8xUVvBvSBrER_J62DM6aCc5ClVfdkalXmcjhhTf_1EodE2IWFdWUEYr_H5Rtt-u7fXhdpHopBF3KZSYx-GEuFYvTQ_bzm-5ZfUNOJEoo3dv5BhQooHCrpkPsgpWxSZAxXuzgTRswfuHJY2UNLmB0dOzWW8ndyxukhYAgymMvrM6uZcRco_oIIi_YIQiBlqyhaxu8gtw&h=Uo1cSbKxJXrM3iydlCfjwo13KIFFpTa96zdlnt-aPq0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/030edb26-8714-4d0b-86f1-df1de50c137b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639063914607218164&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=gzQtmPoq3lbJ6axQDXH6JIQEiMejGzsMoyigiLt6gmb5LTgNjYoKiASI_iai1hQZujGlg_XrveKMYsDm2zuet3xP-_v0rxwsjwWDnKgi8KO80IrMGVmwye4len61j3P9qgAVH90hTTVVHoB0pq_-C6Dz1kYgvzIiORGvaYRY09FzggJwohjmuxHpu2E90jLeSP0_fx_VB1g8ZgCBB1EzHxFHQSEZo2Zii4oBnbGiHmBwrI4g5xtIoozZWCAg-Sq5vs6FxBZBFz-C_g4cO9f_tE818wuO1-fc7kDmgSVbr2mCeqt3LzbYpK1SxAQEbuI2lNQo2s-XIsMjucsJZVOUqg&h=eYZDpwptVJEfgNCjWP--34x62MHP0pzCpvng-Lqre7Y response: body: string: '' @@ -5845,7 +6165,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Aug 2024 08:15:32 GMT + - Wed, 11 Feb 2026 07:25:53 GMT expires: - '-1' pragma: @@ -5856,12 +6176,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/5800ef2e-b728-452f-90d0-7e2f354f12c7 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 22EA808E369646C38D877A001478F9A9 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:32Z' + - 'Ref A: 07E591BE39514C6783BBC90B761CBA78 Ref B: SG2AA1040516062 Ref C: 2026-02-11T07:25:53Z' status: code: 200 message: '' @@ -5879,228 +6203,98 @@ 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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"6\\\"\",\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"6\\\"\",\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\": \"testd5b0a\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd5b0aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd5b0aIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-11T07:24:17.252454+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"ad04b3a2-c87c-4347-ae40-67430f9f3c51\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-11T07:21:20.8279222+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '14899' + - '14896' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:33 GMT + - Wed, 11 Feb 2026 07:25:53 GMT etag: - '"6"' expires: @@ -6113,12 +6307,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;2399,Microsoft.Compute/GetVMScaleSetResource;35 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8C4851357F7048078AFDA863E5462731 Ref B: TYO201100116021 Ref C: 2024-08-26T08:15:33Z' + - 'Ref A: A63030EACF184D259F7F4F8DB0BA6916 Ref B: SG2AA1070306054 Ref C: 2026-02-11T07:25:54Z' status: code: 200 message: '' @@ -6136,63 +6332,59 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:15:19+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\",\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:13:38.7255145+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:14:08.3357446+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:13:38.2568172+00:00\"\r\n\ - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"6a58486d-2041-45b1-b635-30cded6f1080\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-11T07:25:43+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f5f9efb44c\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-11T07:22:54.9543754+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\": \"2026-02-11T07:23:37.3456112+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\": \"2026-02-11T07:22:54.6261956+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3137' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:34 GMT + - Wed, 11 Feb 2026 07:25:54 GMT expires: - '-1' pragma: @@ -6203,23 +6395,26 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23974,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 51FB6494B5BA465EBB60B0E8794A5A5C Ref B: TYO201151005052 Ref C: 2024-08-26T08:15:34Z' + - 'Ref A: B18853523A344055B2009604D47492CF Ref B: SG2AA1040517060 Ref C: 2026-02-11T07:25:54Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "properties": {"publisher": "Microsoft.OSTCExtensions", - "type": "LinuxDiagnostic", "typeHandlerVersion": "2.3", "autoUpgradeMinorVersion": - true, "settings": {"StorageAccount": "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": - {"eventVolume": "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": - "PT1H"}, {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, - "performanceCounters": {"performanceCounterConfiguration": [{"annotation": [{"displayName": - "Disk read guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", + body: '{"location": "westus", "properties": {"autoUpgradeMinorVersion": true, + "protectedSettings": {"storageAccountName": "clitest000002", "storageAccountSasToken": + "123"}, "publisher": "Microsoft.OSTCExtensions", "settings": {"StorageAccount": + "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": {"eventVolume": + "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": "PT1H"}, + {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, "performanceCounters": + {"performanceCounterConfiguration": [{"annotation": [{"displayName": "Disk read + guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", "counter": "readbytespersecond", "counterSpecifier": "/builtin/disk/readbytespersecond", "type": "builtin", "unit": "BytesPerSecond"}, {"annotation": [{"displayName": "Disk writes", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", @@ -6363,8 +6558,8 @@ interactions: "LOG_DEBUG", "LOG_LOCAL4": "LOG_DEBUG", "LOG_LOCAL5": "LOG_DEBUG", "LOG_LOCAL6": "LOG_DEBUG", "LOG_LOCAL7": "LOG_DEBUG", "LOG_LPR": "LOG_DEBUG", "LOG_MAIL": "LOG_DEBUG", "LOG_NEWS": "LOG_DEBUG", "LOG_SYSLOG": "LOG_DEBUG", "LOG_USER": - "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "protectedSettings": - {"storageAccountName": "clitest000002", "storageAccountSasToken": "123"}}}' + "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "type": + "LinuxDiagnostic", "typeHandlerVersion": "2.3"}}' headers: Accept: - application/json @@ -6381,192 +6576,70 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\":\ - \ \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n\ - \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\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/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a2fd851d-db85-4d4a-b070-69d35b3d230a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915562166723&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=JLQOx_01ns6o1P03UzGMcMwjGWdvY_427eRZOFy44uBX187MN0P7vmkC9Ek0tN9VV0uxOpi6-0EfQKG6uzlRNOSkJnWQxNIcOI0IrdNs52G27q5co5iAJuyy3zXPtYGBCPgs-aMZTrxeAiT60kOo5yPuD-32VsgI6MU7AhO6lQhq9aHeMOitcI-LmbY5ns7rPQRbhHtsDqp-a9iAzVg72XE2nfVjGFw4NNj_g_VwQNKjEcQdA1dawmNZEIYEwmfBk-E4Tb-ri6KSunfdeN51GoIufb8-h6ocoRMAKoOwBn99lY7ZYrp9gzHRp2kyBlZScKWLFY3pPmr7t2-hPclLDA&h=wUdbmgXf1vztqOwF8S1Nvp8Kg4v7nE3AwXJCfCW_F3k cache-control: - no-cache content-length: @@ -6574,7 +6647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Wed, 11 Feb 2026 07:25:56 GMT expires: - '-1' pragma: @@ -6585,6 +6658,10 @@ 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/820fd42b-f3ba-41f1-bead-792bd8454e11 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -6592,7 +6669,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 251DA43FD58341C198F68F9EB4FAE68D Ref B: TYO201100115021 Ref C: 2024-08-26T08:15:35Z' + - 'Ref A: 5E1A0B67D2F741FCA193BA40952DD53D Ref B: SG2AA1070301029 Ref C: 2026-02-11T07:25:55Z' status: code: 201 message: '' @@ -6610,14 +6687,13 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a2fd851d-db85-4d4a-b070-69d35b3d230a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915562166723&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=JLQOx_01ns6o1P03UzGMcMwjGWdvY_427eRZOFy44uBX187MN0P7vmkC9Ek0tN9VV0uxOpi6-0EfQKG6uzlRNOSkJnWQxNIcOI0IrdNs52G27q5co5iAJuyy3zXPtYGBCPgs-aMZTrxeAiT60kOo5yPuD-32VsgI6MU7AhO6lQhq9aHeMOitcI-LmbY5ns7rPQRbhHtsDqp-a9iAzVg72XE2nfVjGFw4NNj_g_VwQNKjEcQdA1dawmNZEIYEwmfBk-E4Tb-ri6KSunfdeN51GoIufb8-h6ocoRMAKoOwBn99lY7ZYrp9gzHRp2kyBlZScKWLFY3pPmr7t2-hPclLDA&h=wUdbmgXf1vztqOwF8S1Nvp8Kg4v7nE3AwXJCfCW_F3k response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:15:37.0088753+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"27b067ee-2411-4200-b19f-e7f2f99ed20b\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:25:56.0196204+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a2fd851d-db85-4d4a-b070-69d35b3d230a\"\r\n}" headers: cache-control: - no-cache @@ -6626,7 +6702,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Wed, 11 Feb 2026 07:25:56 GMT expires: - '-1' pragma: @@ -6637,12 +6713,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/9ce0fc5d-35fe-4b28-b97e-f9ecd60c0dd4 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: CE73648E79684D5A9F45271B883055FE Ref B: TYO201100115021 Ref C: 2024-08-26T08:15:37Z' + - 'Ref A: 33496C0FFCEA4C768A853489A0D3C030 Ref B: SG2AA1070305025 Ref C: 2026-02-11T07:25:56Z' status: code: 200 message: '' @@ -6660,14 +6740,14 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a2fd851d-db85-4d4a-b070-69d35b3d230a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915562166723&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=JLQOx_01ns6o1P03UzGMcMwjGWdvY_427eRZOFy44uBX187MN0P7vmkC9Ek0tN9VV0uxOpi6-0EfQKG6uzlRNOSkJnWQxNIcOI0IrdNs52G27q5co5iAJuyy3zXPtYGBCPgs-aMZTrxeAiT60kOo5yPuD-32VsgI6MU7AhO6lQhq9aHeMOitcI-LmbY5ns7rPQRbhHtsDqp-a9iAzVg72XE2nfVjGFw4NNj_g_VwQNKjEcQdA1dawmNZEIYEwmfBk-E4Tb-ri6KSunfdeN51GoIufb8-h6ocoRMAKoOwBn99lY7ZYrp9gzHRp2kyBlZScKWLFY3pPmr7t2-hPclLDA&h=wUdbmgXf1vztqOwF8S1Nvp8Kg4v7nE3AwXJCfCW_F3k response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:15:37.0088753+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:15:47.4466155+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"27b067ee-2411-4200-b19f-e7f2f99ed20b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:25:56.0196204+00:00\",\r\n \"endTime\": + \"2026-02-11T07:26:16.4105514+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a2fd851d-db85-4d4a-b070-69d35b3d230a\"\r\n}" headers: cache-control: - no-cache @@ -6676,7 +6756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:07 GMT + - Wed, 11 Feb 2026 07:26:27 GMT expires: - '-1' pragma: @@ -6687,12 +6767,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/4559b637-92eb-43f1-98d0-80aa7a28819b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14976 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FD1093FEC7514DD4B09E82A0ACD73C43 Ref B: TYO201100115021 Ref C: 2024-08-26T08:16:07Z' + - 'Ref A: E3B5D8E42CBB43B0AEFBAECD6067F6B1 Ref B: SG2AA1070304025 Ref C: 2026-02-11T07:26:27Z' status: code: 200 message: '' @@ -6710,187 +6794,65 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\"\ - : \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n\ - \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -6899,7 +6861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:08 GMT + - Wed, 11 Feb 2026 07:26:28 GMT expires: - '-1' pragma: @@ -6910,12 +6872,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;23999,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 73D25526DB5A4450B2ABBB878271FE48 Ref B: TYO201100115021 Ref C: 2024-08-26T08:16:08Z' + - 'Ref A: FAC4CB5485804F949C0A40188FC52DAB Ref B: SG2AA1070301029 Ref C: 2026-02-11T07:26:27Z' status: code: 200 message: '' @@ -6933,265 +6897,137 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:15:54+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \"\ - type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"2.3.9029\",\r\n \"status\": {\r\n \"code\": \"\ - ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ - \ \"displayStatus\": \"Ready\",\r\n \"message\":\ - \ \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\"\ - ,\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:13:38.7255145+00:00\"\r\n }\r\ - \n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n \ - \ {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\":\ - \ \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"2.3.9029\",\r\n \"statuses\": [\r\n {\r\n \ - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ - : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"message\": \"Invalid mdsd config given. Can't enable.\ - \ This extension install/enable operation is still considered a success as\ - \ it's an external error. Config validation result: 2024-08-26T08:15:54.0360500Z:\ - \ Not all GCS env vars are defined. Missing 5: MONITORING_GCS_ENVIRONMENT\ - \ MONITORING_GCS_ACCOUNT MONITORING_GCS_REGION MONITORING_GCS_CERT_CERTFILE\ - \ MONITORING_GCS_CERT_KEYFILE. GCS won't be used.\\n2024-08-26T08:15:54.0425630Z:\ - \ Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0428980Z: Table SAS lacks\ - \ [tn=]: 123\\n2024-08-26T08:15:54.0429720Z: Table SAS lacks [tn=]: 123\\\ - n2024-08-26T08:15:54.0430260Z: Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0430730Z:\ - \ Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0431140Z: Table SAS lacks\ - \ [tn=]: 123\\n2024-08-26T08:15:54.0431620Z: Table SAS lacks [tn=]: 123\\\ - n2024-08-26T08:15:54.0431990Z: Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0432380Z:\ - \ Table SAS lacks [tn=]: 123\\nParse reported these messages:\\n/var/lib/waagent/Microsoft.OSTCExtensions.LinuxDiagnostic-2.3.9029/./xmlCfg.xml(7)\ - \ Warning: Empty value for IdentityComponent; hope that's okay\\n. Terminating\ - \ LAD as it can't proceed.\"\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:15:47.3215661+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:13:38.2568172+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n\ - \ \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"\ - autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\"\ - : \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \ - \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\"\ - :{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"6a58486d-2041-45b1-b635-30cded6f1080\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-11T07:26:25+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9029\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2026-02-11T07:22:54.9543754+00:00\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": + \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9029\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Invalid mdsd config given. Can't + enable. This extension install/enable operation is still considered a success + as it's an external error. Config validation result: 2026-02-11T07:26:24.8426710Z: + Not all GCS env vars are defined. Missing 5: MONITORING_GCS_ENVIRONMENT MONITORING_GCS_ACCOUNT + MONITORING_GCS_REGION MONITORING_GCS_CERT_CERTFILE MONITORING_GCS_CERT_KEYFILE. + GCS won't be used.\\n2026-02-11T07:26:24.8468900Z: Table SAS lacks [tn=]: + 123\\n2026-02-11T07:26:24.8472780Z: Table SAS lacks [tn=]: 123\\n2026-02-11T07:26:24.8473450Z: + Table SAS lacks [tn=]: 123\\n2026-02-11T07:26:24.8473970Z: Table SAS lacks + [tn=]: 123\\n2026-02-11T07:26:24.8474410Z: Table SAS lacks [tn=]: 123\\n2026-02-11T07:26:24.8474860Z: + Table SAS lacks [tn=]: 123\\n2026-02-11T07:26:24.8475330Z: Table SAS lacks + [tn=]: 123\\n2026-02-11T07:26:24.8476070Z: Table SAS lacks [tn=]: 123\\n2026-02-11T07:26:24.8476660Z: + Table SAS lacks [tn=]: 123\\nParse reported these messages:\\n/var/lib/waagent/Microsoft.OSTCExtensions.LinuxDiagnostic-2.3.9029/./xmlCfg.xml(7) + Warning: Empty value for IdentityComponent; hope that's okay\\n. Terminating + LAD as it can't proceed.\"\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\": \"2026-02-11T07:26:16.2854832+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\": \"2026-02-11T07:22:54.6261956+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": + \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '17429' + - '17427' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:09 GMT + - Wed, 11 Feb 2026 07:26:28 GMT expires: - '-1' pragma: @@ -7202,12 +7038,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;23998,Microsoft.Compute/LowCostGetResource;31 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F50B5A948C354A34ADBF74A81FE4A8C3 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:09Z' + - 'Ref A: EA2BDAA7F73A48A49CFF6D1A78459F18 Ref B: SG2AA1070302040 Ref C: 2026-02-11T07:26:28Z' status: code: 200 message: '' @@ -7215,7 +7053,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7227,7 +7065,7 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: @@ -7237,17 +7075,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0136b2b6-a74f-4d24-800e-2542bef69488?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915901072381&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=P23hzjaVxtfxKWlnSXCSokJOvtG8GBRaHyX6RGEwJcoT8DS26OwGw5jlESCjGQtyTFrKXOtMm2uYVGuPK-UD_9sv6OADZYn28JuMVTii1m1BtRvW-c2Qn0qfor9Pwxuye616eamOEft3CTevs4EOZdJD6TOWGhUUDpcq45AefyrMw3iEA4kS5qjdXypugGmAw0JRW5zevAQ-2yBwDTX0DUDA2pJFdyMFFG-kN962KHZPwb9ylKUWgIbWzHWJEYe5YGE9H1xWmbH78VfjKcJmA1r87T0H9dm6qqnYpfc4AKIgyEFNMdJddUgtu8M8NmVdL2AlbMDJPJyWEN_QF4dpVg&h=foZ_eTCIyHO8yn0hE_XeYQInXwjWCAoxE5LxJ3lTXvs cache-control: - no-cache content-length: - '0' date: - - Mon, 26 Aug 2024 08:16:10 GMT + - Wed, 11 Feb 2026 07:26:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602569708427164&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=iXl0KLLoGWFdlD4fwjjePknQ7V2b5PTR24U0cD7rU47siOfO0TPR4AUkbL4pVjmAU64bVgHICzogM14B2EjsplIcfNVc4f04qVjuIHomsH3-sNChHCOii72FYMFq5xtgy1xnpGliGQh4kn-XFHmfphOVcYg0r8on89sc68qGmI3p8dDEE3RPnHzj2yPb5gUuHiz7Px0ETsbBU_c_dWEx2ciPK0cS_vIGeFsrJ7bS5VeomQOGY0mmow08Jl8TGQp3ubJlE5pI2DGYcFl16ratFbBoueCYjW3dQaVlp3vJrGmXvkaVxWhv0l7uJuelx9NBzqN9nhQwq4PYRsJdtzyE8g&h=mv5AdkjW_wegEAKqMXg-7TBXs7oPNW4ofPkH9Vut5IA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0136b2b6-a74f-4d24-800e-2542bef69488?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639063915901072381&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=P23hzjaVxtfxKWlnSXCSokJOvtG8GBRaHyX6RGEwJcoT8DS26OwGw5jlESCjGQtyTFrKXOtMm2uYVGuPK-UD_9sv6OADZYn28JuMVTii1m1BtRvW-c2Qn0qfor9Pwxuye616eamOEft3CTevs4EOZdJD6TOWGhUUDpcq45AefyrMw3iEA4kS5qjdXypugGmAw0JRW5zevAQ-2yBwDTX0DUDA2pJFdyMFFG-kN962KHZPwb9ylKUWgIbWzHWJEYe5YGE9H1xWmbH78VfjKcJmA1r87T0H9dm6qqnYpfc4AKIgyEFNMdJddUgtu8M8NmVdL2AlbMDJPJyWEN_QF4dpVg&h=foZ_eTCIyHO8yn0hE_XeYQInXwjWCAoxE5LxJ3lTXvs pragma: - no-cache strict-transport-security: @@ -7256,14 +7094,18 @@ 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/c2ecb868-d2ea-4a49-a353-bf7041d53e57 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: 350CF17FCDED4F419CE83164462F0DF0 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:09Z' + - 'Ref A: 72B889BC2BD14C3586B81846ACA4455D Ref B: SG2AA1070302031 Ref C: 2026-02-11T07:26:29Z' status: code: 202 message: '' @@ -7281,23 +7123,22 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0136b2b6-a74f-4d24-800e-2542bef69488?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915901072381&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=P23hzjaVxtfxKWlnSXCSokJOvtG8GBRaHyX6RGEwJcoT8DS26OwGw5jlESCjGQtyTFrKXOtMm2uYVGuPK-UD_9sv6OADZYn28JuMVTii1m1BtRvW-c2Qn0qfor9Pwxuye616eamOEft3CTevs4EOZdJD6TOWGhUUDpcq45AefyrMw3iEA4kS5qjdXypugGmAw0JRW5zevAQ-2yBwDTX0DUDA2pJFdyMFFG-kN962KHZPwb9ylKUWgIbWzHWJEYe5YGE9H1xWmbH78VfjKcJmA1r87T0H9dm6qqnYpfc4AKIgyEFNMdJddUgtu8M8NmVdL2AlbMDJPJyWEN_QF4dpVg&h=foZ_eTCIyHO8yn0hE_XeYQInXwjWCAoxE5LxJ3lTXvs response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:10.743851+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a7bdca37-7bdc-40bc-a76d-de4076513136\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:26:30.0513841+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0136b2b6-a74f-4d24-800e-2542bef69488\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:11 GMT + - Wed, 11 Feb 2026 07:26:30 GMT expires: - '-1' pragma: @@ -7308,12 +7149,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/41178c6a-511b-4c26-ac58-249c4ea3465c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14975 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 436F3D2681A947FAA12CD975C870D191 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:10Z' + - 'Ref A: 4CD74367769547EEBBE6268A9FC545D9 Ref B: SG2AA1070303052 Ref C: 2026-02-11T07:26:30Z' status: code: 200 message: '' @@ -7331,23 +7176,23 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0136b2b6-a74f-4d24-800e-2542bef69488?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063915901072381&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=P23hzjaVxtfxKWlnSXCSokJOvtG8GBRaHyX6RGEwJcoT8DS26OwGw5jlESCjGQtyTFrKXOtMm2uYVGuPK-UD_9sv6OADZYn28JuMVTii1m1BtRvW-c2Qn0qfor9Pwxuye616eamOEft3CTevs4EOZdJD6TOWGhUUDpcq45AefyrMw3iEA4kS5qjdXypugGmAw0JRW5zevAQ-2yBwDTX0DUDA2pJFdyMFFG-kN962KHZPwb9ylKUWgIbWzHWJEYe5YGE9H1xWmbH78VfjKcJmA1r87T0H9dm6qqnYpfc4AKIgyEFNMdJddUgtu8M8NmVdL2AlbMDJPJyWEN_QF4dpVg&h=foZ_eTCIyHO8yn0hE_XeYQInXwjWCAoxE5LxJ3lTXvs response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:10.743851+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:16:21.119032+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a7bdca37-7bdc-40bc-a76d-de4076513136\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:26:30.0513841+00:00\",\r\n \"endTime\": + \"2026-02-11T07:26:40.4889756+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0136b2b6-a74f-4d24-800e-2542bef69488\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:41 GMT + - Wed, 11 Feb 2026 07:27:00 GMT expires: - '-1' pragma: @@ -7358,12 +7203,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/db0424b2-07cd-4f85-b51d-35c7a85fd061 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: F996F0410A67415B9B392FE7A68A5EC5 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:41Z' + - 'Ref A: 5FEEE92B841F4288B107DC2632BBA0BD Ref B: SG2AA1070305062 Ref C: 2026-02-11T07:27:01Z' status: code: 200 message: '' @@ -7381,63 +7230,59 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:16:16+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\",\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:13:38.7255145+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:16:20.9784055+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:13:38.2568172+00:00\"\r\n\ - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"6a58486d-2041-45b1-b635-30cded6f1080\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-11T07:26:36+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f5f9efb44c\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-11T07:22:54.9543754+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\": \"2026-02-11T07:26:40.3483391+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\": \"2026-02-11T07:22:54.6261956+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3137' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:42 GMT + - Wed, 11 Feb 2026 07:27:02 GMT expires: - '-1' pragma: @@ -7448,23 +7293,26 @@ interactions: - 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 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 87A9D9A122724287B8D88D3B0DB7A1F6 Ref B: TYO201100117009 Ref C: 2024-08-26T08:16:42Z' + - 'Ref A: BDD6EF12B72B41FBAA326624297FF0AF Ref B: SG2AA1040516052 Ref C: 2026-02-11T07:27:01Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "properties": {"publisher": "Microsoft.Azure.Diagnostics", - "type": "LinuxDiagnostic", "typeHandlerVersion": "3.0", "autoUpgradeMinorVersion": - true, "settings": {"StorageAccount": "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": - {"eventVolume": "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": - "PT1H"}, {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, - "performanceCounters": {"performanceCounterConfiguration": [{"annotation": [{"displayName": - "Disk read guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", + body: '{"location": "westus", "properties": {"autoUpgradeMinorVersion": true, + "protectedSettings": {"storageAccountName": "clitest000002", "storageAccountSasToken": + "123"}, "publisher": "Microsoft.Azure.Diagnostics", "settings": {"StorageAccount": + "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": {"eventVolume": + "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": "PT1H"}, + {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, "performanceCounters": + {"performanceCounterConfiguration": [{"annotation": [{"displayName": "Disk read + guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", "counter": "readbytespersecond", "counterSpecifier": "/builtin/disk/readbytespersecond", "type": "builtin", "unit": "BytesPerSecond"}, {"annotation": [{"displayName": "Disk writes", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", @@ -7608,8 +7456,8 @@ interactions: "LOG_DEBUG", "LOG_LOCAL4": "LOG_DEBUG", "LOG_LOCAL5": "LOG_DEBUG", "LOG_LOCAL6": "LOG_DEBUG", "LOG_LOCAL7": "LOG_DEBUG", "LOG_LPR": "LOG_DEBUG", "LOG_MAIL": "LOG_DEBUG", "LOG_NEWS": "LOG_DEBUG", "LOG_SYSLOG": "LOG_DEBUG", "LOG_USER": - "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "protectedSettings": - {"storageAccountName": "clitest000002", "storageAccountSasToken": "123"}}}' + "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "type": + "LinuxDiagnostic", "typeHandlerVersion": "3.0"}}' headers: Accept: - application/json @@ -7626,192 +7474,70 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\":\ - \ \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\ - \n \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\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/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/078bef5f-7eb4-4851-a11b-8d51c5d00720?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063916236191443&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=SsMzdlxKAEbCmL9YBkIe5ZIZez1VS0jFUyTQq-Ea9R40yc4NoIw6fBnnDOxg757muSZw7_tpMk73i2QmAKFcMZjee2uZWEDNZUI_8pmq4NkNB8UAiayPuY73fAWRcfzATwzxRVdPmFf9alQP9xj5aCYzyh-NPHzMQqfUhJ1L5jstPgC4M7KQj0nMWxlW8wuEupiWi4bG-u7AnljSaGrivrQs5UMg4HKDDV3NsykM2zokw4asajyTWFhPx5F6z042iUIThg1utOwo1VjmVaeRJqhf5tensuwvxak9r5VGKhjNfdppGhNrYiBC3td7V0GYACnfro0M6kQNJbdS9bjvZQ&h=g5EGzyydF7dky5SQb9n_3CDsET-9u47zuh_h69a63yA cache-control: - no-cache content-length: @@ -7819,7 +7545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Wed, 11 Feb 2026 07:27:03 GMT expires: - '-1' pragma: @@ -7830,14 +7556,18 @@ 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/f9aaefed-4bba-4f56-a83c-3689b4a8d6bf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,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: DB9FD41A83BD477581AC1D9F17F768AD Ref B: TYO201100114023 Ref C: 2024-08-26T08:16:42Z' + - 'Ref A: 796D945F25934E01AA5395211DD10AA2 Ref B: SG2AA1040517040 Ref C: 2026-02-11T07:27:02Z' status: code: 201 message: '' @@ -7855,14 +7585,13 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/078bef5f-7eb4-4851-a11b-8d51c5d00720?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063916236191443&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=SsMzdlxKAEbCmL9YBkIe5ZIZez1VS0jFUyTQq-Ea9R40yc4NoIw6fBnnDOxg757muSZw7_tpMk73i2QmAKFcMZjee2uZWEDNZUI_8pmq4NkNB8UAiayPuY73fAWRcfzATwzxRVdPmFf9alQP9xj5aCYzyh-NPHzMQqfUhJ1L5jstPgC4M7KQj0nMWxlW8wuEupiWi4bG-u7AnljSaGrivrQs5UMg4HKDDV3NsykM2zokw4asajyTWFhPx5F6z042iUIThg1utOwo1VjmVaeRJqhf5tensuwvxak9r5VGKhjNfdppGhNrYiBC3td7V0GYACnfro0M6kQNJbdS9bjvZQ&h=g5EGzyydF7dky5SQb9n_3CDsET-9u47zuh_h69a63yA response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:27:03.3955769+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"078bef5f-7eb4-4851-a11b-8d51c5d00720\"\r\n}" headers: cache-control: - no-cache @@ -7871,7 +7600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Wed, 11 Feb 2026 07:27:04 GMT expires: - '-1' pragma: @@ -7882,12 +7611,69 @@ 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/malaysiasouth/59c8c84e-3e92-44f1-92dc-e291204be112 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 17ECA06477C443E2AAE9151D327311E3 Ref B: SG2AA1070304031 Ref C: 2026-02-11T07:27:03Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm diagnostics set + Connection: + - keep-alive + ParameterSetName: + - -g --vm-name --settings --protected-settings + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/078bef5f-7eb4-4851-a11b-8d51c5d00720?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063916236191443&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=SsMzdlxKAEbCmL9YBkIe5ZIZez1VS0jFUyTQq-Ea9R40yc4NoIw6fBnnDOxg757muSZw7_tpMk73i2QmAKFcMZjee2uZWEDNZUI_8pmq4NkNB8UAiayPuY73fAWRcfzATwzxRVdPmFf9alQP9xj5aCYzyh-NPHzMQqfUhJ1L5jstPgC4M7KQj0nMWxlW8wuEupiWi4bG-u7AnljSaGrivrQs5UMg4HKDDV3NsykM2zokw4asajyTWFhPx5F6z042iUIThg1utOwo1VjmVaeRJqhf5tensuwvxak9r5VGKhjNfdppGhNrYiBC3td7V0GYACnfro0M6kQNJbdS9bjvZQ&h=g5EGzyydF7dky5SQb9n_3CDsET-9u47zuh_h69a63yA + response: + body: + string: "{\r\n \"startTime\": \"2026-02-11T07:27:03.3955769+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"078bef5f-7eb4-4851-a11b-8d51c5d00720\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 11 Feb 2026 07:27: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-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/fb9fb826-6ea1-42da-a723-43ff6b52d44a + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 6B804CD6EA3042E0BE563CCA431548D8 Ref B: TYO201100114023 Ref C: 2024-08-26T08:16:44Z' + - 'Ref A: 6C24809770DB486CB4072C18C6D49450 Ref B: SG2AA1040512062 Ref C: 2026-02-11T07:27:34Z' status: code: 200 message: '' @@ -7905,14 +7691,13 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/078bef5f-7eb4-4851-a11b-8d51c5d00720?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063916236191443&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=SsMzdlxKAEbCmL9YBkIe5ZIZez1VS0jFUyTQq-Ea9R40yc4NoIw6fBnnDOxg757muSZw7_tpMk73i2QmAKFcMZjee2uZWEDNZUI_8pmq4NkNB8UAiayPuY73fAWRcfzATwzxRVdPmFf9alQP9xj5aCYzyh-NPHzMQqfUhJ1L5jstPgC4M7KQj0nMWxlW8wuEupiWi4bG-u7AnljSaGrivrQs5UMg4HKDDV3NsykM2zokw4asajyTWFhPx5F6z042iUIThg1utOwo1VjmVaeRJqhf5tensuwvxak9r5VGKhjNfdppGhNrYiBC3td7V0GYACnfro0M6kQNJbdS9bjvZQ&h=g5EGzyydF7dky5SQb9n_3CDsET-9u47zuh_h69a63yA response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:27:03.3955769+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"078bef5f-7eb4-4851-a11b-8d51c5d00720\"\r\n}" headers: cache-control: - no-cache @@ -7921,7 +7706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:14 GMT + - Wed, 11 Feb 2026 07:28:06 GMT expires: - '-1' pragma: @@ -7932,12 +7717,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/02f4107f-0c9b-44e2-8efb-95177e37500e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14984 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6EF6B14B983B4576BA81FCD5C7038902 Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:15Z' + - 'Ref A: 7355935C1C1D4B24934600009A38016B Ref B: SG2AA1040519025 Ref C: 2026-02-11T07:28:05Z' status: code: 200 message: '' @@ -7955,14 +7744,14 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/078bef5f-7eb4-4851-a11b-8d51c5d00720?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639063916236191443&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=SsMzdlxKAEbCmL9YBkIe5ZIZez1VS0jFUyTQq-Ea9R40yc4NoIw6fBnnDOxg757muSZw7_tpMk73i2QmAKFcMZjee2uZWEDNZUI_8pmq4NkNB8UAiayPuY73fAWRcfzATwzxRVdPmFf9alQP9xj5aCYzyh-NPHzMQqfUhJ1L5jstPgC4M7KQj0nMWxlW8wuEupiWi4bG-u7AnljSaGrivrQs5UMg4HKDDV3NsykM2zokw4asajyTWFhPx5F6z042iUIThg1utOwo1VjmVaeRJqhf5tensuwvxak9r5VGKhjNfdppGhNrYiBC3td7V0GYACnfro0M6kQNJbdS9bjvZQ&h=g5EGzyydF7dky5SQb9n_3CDsET-9u47zuh_h69a63yA response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:17:44.9017759+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-11T07:27:03.3955769+00:00\",\r\n \"endTime\": + \"2026-02-11T07:28:13.8810381+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"078bef5f-7eb4-4851-a11b-8d51c5d00720\"\r\n}" headers: cache-control: - no-cache @@ -7971,7 +7760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:44 GMT + - Wed, 11 Feb 2026 07:28:36 GMT expires: - '-1' pragma: @@ -7982,12 +7771,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/136dd55d-3801-4b47-a10b-a10415454a79 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,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: 4D06136A3AA447CC8D26F907947080FF Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:45Z' + - 'Ref A: 44CCF9D20A9A43188A64238ED177EA9C Ref B: SG2AA1040512025 Ref C: 2026-02-11T07:28:36Z' status: code: 200 message: '' @@ -8005,187 +7798,65 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\"\ - : \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\ - \n \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -8194,7 +7865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:45 GMT + - Wed, 11 Feb 2026 07:28:37 GMT expires: - '-1' pragma: @@ -8205,12 +7876,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;23971,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 77A63F02D8B649968EDA8321DC277775 Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:45Z' + - 'Ref A: 3FC4698934A3412AA5987271D24BB788 Ref B: SG2AA1040513052 Ref C: 2026-02-11T07:28:36Z' status: code: 200 message: '' @@ -8228,221 +7901,96 @@ 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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:13:38.2568172+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\"\ - : \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"\ - autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"\ - type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\ - \n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"\ - diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"\ - metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\"\ - :\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\"\ - :{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"\ - Disk read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\"\ - :\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk writes\",\"locale\":\"en-us\"}],\"\ - class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk transfer\ - \ time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\"\ - :\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk write guest OS\",\"locale\":\"\ - en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"6a58486d-2041-45b1-b635-30cded6f1080\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f5f9efb44c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef5f9efb44ca9dd.blob.core.windows.net/vhds/osdisk_f5f9efb44c.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"timeCreated\": \"2026-02-11T07:22:54.6261956+00:00\"\r\n },\r\n \"etag\": + \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '14233' + - '14231' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:46 GMT + - Wed, 11 Feb 2026 07:28:37 GMT etag: - '"2"' expires: @@ -8455,12 +8003,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;23970,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 419B91371E31431882C718CEE19F8D70 Ref B: TYO201151005011 Ref C: 2024-08-26T08:17:46Z' + - 'Ref A: 90FE4B79277C424B84B957BC44DF75B1 Ref B: SG2AA1070306052 Ref C: 2026-02-11T07:28:37Z' status: code: 200 message: '' 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 21224eebee8..31393132901 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 @@ -3416,10 +3416,12 @@ def test_diagnostics_extension_install(self, resource_group, storage_account): 'vnet': 'vnet1' }) - self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password ' - '--lb-sku Standard --admin-username user11 --admin-password TestTest12#$ --orchestration-mode Uniform') - self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:18.04-LTS:latest --authentication-type password ' - '--admin-username user11 --admin-password TestTest12#$ --use-unmanaged-disk --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE') + self.cmd('vmss create -g {rg} -n {vmss} --image Canonical:UbuntuServer:16.04-LTS:latest ' + '--authentication-type password --lb-sku Standard --admin-username user11 ' + '--admin-password TestTest12#$ --orchestration-mode Uniform --vm-sku Standard_B1ls') + self.cmd('vm create -g {rg} -n {vm} --image Canonical:UbuntuServer:16.04-LTS:latest ' + '--authentication-type password --admin-username user11 --admin-password TestTest12#$ ' + '--use-unmanaged-disk --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE --size Standard_B2ms') # Disable default outbound access self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --default-outbound-access false') From f158107fa725e5ed411506012caf06b0cdf3bdb5 Mon Sep 17 00:00:00 2001 From: william051200 Date: Mon, 16 Feb 2026 09:02:03 +0800 Subject: [PATCH 4/6] Record test case --- .../test_diagnostics_extension_install.yaml | 7003 ++++++++--------- 1 file changed, 3241 insertions(+), 3762 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml index 0b2795b5cad..54185b20524 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml @@ -12,23 +12,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2024-08-26T08:11:07Z","module":"vm","DateCreated":"2024-08-26T08:11:13Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-16T00:54:11Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '500' + - '424' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:36 GMT + - Mon, 16 Feb 2026 00:54:53 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1FDBBA1799EA47E0AC936E0351D8337E Ref B: TYO201100114035 Ref C: 2024-08-26T08:11:37Z' + - 'Ref A: 8DDFE3E81A254682B448A3D12BB4F3AC Ref B: SG2AA1040516029 Ref C: 2026-02-16T00:54:52Z' status: code: 200 message: OK @@ -59,25 +59,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:38 GMT + - Mon, 16 Feb 2026 00:54:55 GMT expires: - '-1' pragma: @@ -88,12 +91,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/ee1b4de0-354a-46ab-93f0-f0b1577f84ab x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3F23CE1DBF2D4B2880C553C4ABC19A66 Ref B: TYO201151002011 Ref C: 2024-08-26T08:11:38Z' + - 'Ref A: DC161244F32C4D118F3D7309D49C2E31 Ref B: SG2AA1070302036 Ref C: 2026-02-16T00:54:53Z' status: code: 200 message: OK @@ -110,37 +115,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:39 GMT + - Mon, 16 Feb 2026 00:54:55 GMT expires: - '-1' pragma: @@ -151,12 +155,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/58426168-59e7-4df8-b730-85716d7a9121 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73962 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: D38DA746BD2B4A69912251E52813D7B1 Ref B: TYO201151002060 Ref C: 2024-08-26T08:11:38Z' + - 'Ref A: 46602B4A14A64C83B68D65C1982F093F Ref B: SG2AA1040519054 Ref C: 2026-02-16T00:54:55Z' status: code: 200 message: OK @@ -173,9 +179,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01 response: @@ -189,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:39 GMT + - Mon, 16 Feb 2026 00:54:57 GMT expires: - '-1' pragma: @@ -201,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: A50B99CAD729490F955A111A9DF47F39 Ref B: TYO201100113017 Ref C: 2024-08-26T08:11:39Z' + - 'Ref A: 2931A5F805674288BD6A979D4CA913BA Ref B: SG2AA1040518036 Ref C: 2026-02-16T00:54:56Z' status: code: 200 message: OK @@ -220,25 +226,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:40 GMT + - Mon, 16 Feb 2026 00:54:58 GMT expires: - '-1' pragma: @@ -249,12 +258,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/a5343413-34ba-4b17-96b8-0ce45277e0de x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 38FA0DCF215B45098E1F1A9308F81644 Ref B: TYO201151002034 Ref C: 2024-08-26T08:11:40Z' + - 'Ref A: 603DB0F288E34BABA126FE85E4AF2F4D Ref B: SG2AA1040520060 Ref C: 2026-02-16T00:54:57Z' status: code: 200 message: OK @@ -271,37 +282,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:40 GMT + - Mon, 16 Feb 2026 00:54:59 GMT expires: - '-1' pragma: @@ -312,12 +322,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/9d151f4b-d02f-4f70-ae1f-d02bada6e6c7 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73961 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ADEC0AA060F54EF6857D048AE116EBE4 Ref B: TYO201151001052 Ref C: 2024-08-26T08:11:40Z' + - 'Ref A: C33418E45F624E69A5BACA6594E5EFD0 Ref B: SG2AA1040515034 Ref C: 2026-02-16T00:54:59Z' status: code: 200 message: OK @@ -334,25 +346,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:42 GMT + - Mon, 16 Feb 2026 00:54:59 GMT expires: - '-1' pragma: @@ -363,12 +378,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/93f0b8e5-7886-40db-92c1-515d9975a926 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 78C8F9C4231746018E67FCF303A4AD81 Ref B: TYO201151006009 Ref C: 2024-08-26T08:11:41Z' + - 'Ref A: AB878DF3C30242CE859D10CADA1D3E5C Ref B: SG2AA1070303062 Ref C: 2026-02-16T00:55:00Z' status: code: 200 message: OK @@ -385,37 +402,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:42 GMT + - Mon, 16 Feb 2026 00:55:01 GMT expires: - '-1' pragma: @@ -426,12 +442,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/48686bcd-1af7-44a0-b27a-bd921ff2389d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73960 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FC808B8D15634DA591C5C2E40B6C3DCC Ref B: TYO201151006036 Ref C: 2024-08-26T08:11:42Z' + - 'Ref A: FFA1A38C99084FC39DBC1929C3AFA1A7 Ref B: SG2AA1040519031 Ref C: 2026-02-16T00:55:00Z' status: code: 200 message: OK @@ -476,15 +494,15 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": - "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, - "osProfile": {"computerNamePrefix": "testdcd94", "adminUsername": "user11", + "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "testd7aeb", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "testdcd94Nic", "properties": {"ipConfigurations": [{"name": "testdcd94IPConfig", + [{"name": "testd7aebNic", "properties": {"ipConfigurations": [{"name": "testd7aebIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'', ''testdiagvmssNSG'')]"}, "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, - "sku": {"name": "Standard_DS1_v2", "capacity": 2}}], "outputs": {"VMSS": {"type": + "sku": {"name": "Standard_B1ls", "capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'', ''testdiagvmss''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}}, "parameters": {"adminPassword": {"value": "TestTest12#$"}}, "mode": "incremental"}}' @@ -498,22 +516,22 @@ interactions: Connection: - keep-alive Content-Length: - - '5118' + - '5116' Content-Type: - application/json ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","name":"vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10767264860064875351","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:11:50.0708639Z","duration":"PT0.0006395S","correlationId":"2f4f8333-2045-453b-abe4-8db63c37f776","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","name":"vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13197434418560707682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-16T00:55:10.0846274Z","duration":"PT0.0006844S","correlationId":"af4ed699-8ec5-4ee0-a232-f7ea765e0589","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij/operationStatuses/08584769469775523433?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg cache-control: - no-cache content-length: @@ -521,7 +539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:51 GMT + - Mon, 16 Feb 2026 00:55:11 GMT expires: - '-1' pragma: @@ -533,13 +551,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.573.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: C7DD80F8A2C84A15880F113EBA24D08A Ref B: TYO201100113049 Ref C: 2024-08-26T08:11:43Z' + - 'Ref A: A3D2CA8ECC944B339F2C13B1FA6D3421 Ref B: SG2AA1040515060 Ref C: 2026-02-16T00:55:01Z' status: code: 201 message: Created @@ -556,23 +574,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg response: body: - string: '{"status":"Running"}' + string: '{"status":"Accepted"}' headers: cache-control: - no-cache content-length: - - '20' + - '21' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:52 GMT + - Mon, 16 Feb 2026 00:55:11 GMT expires: - '-1' pragma: @@ -586,7 +604,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 36AB5993A7864D468695D36F29582BEF Ref B: TYO201100113049 Ref C: 2024-08-26T08:11:51Z' + - 'Ref A: BBF1D0F704284FD0ADFE68AF573B0299 Ref B: SG2AA1040517054 Ref C: 2026-02-16T00:55:12Z' status: code: 200 message: OK @@ -603,11 +621,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg response: body: string: '{"status":"Running"}' @@ -619,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:23 GMT + - Mon, 16 Feb 2026 00:55:42 GMT expires: - '-1' pragma: @@ -633,7 +651,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4210D69CD8D348DF88662E3BBFADAB5B Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:23Z' + - 'Ref A: DBDC48AB75824D2AA809DE989D8FC6A3 Ref B: SG2AA1040518042 Ref C: 2026-02-16T00:55:42Z' status: code: 200 message: OK @@ -650,11 +668,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769469775523433?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg response: body: string: '{"status":"Succeeded"}' @@ -666,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:54 GMT + - Mon, 16 Feb 2026 00:56:13 GMT expires: - '-1' pragma: @@ -680,7 +698,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1A7EB10EECA2451A9BEF22DDF73A5A0C Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:54Z' + - 'Ref A: 63E2601B3D6F4A09A4BF9FBD9898FF18 Ref B: SG2AA1070305062 Ref C: 2026-02-16T00:56:13Z' status: code: 200 message: OK @@ -697,14 +715,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --lb-sku --admin-username --admin-password - --orchestration-mode + --orchestration-mode --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","name":"vmss_deploy_9RU5ipR1CMRHvgLHe8BTnm5iH9Szc8ij","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10767264860064875351","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:12:46.9546813Z","duration":"PT56.8844569S","correlationId":"2f4f8333-2045-453b-abe4-8db63c37f776","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testdcd94","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testdcd94Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testdcd94IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2024-08-26T08:12:04.8176232+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"487f4b67-97cb-45b5-b063-34b7b8ee14c6","platformFaultDomainCount":5,"timeCreated":"2024-08-26T08:12:04.8176232+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","name":"vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13197434418560707682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-16T00:56:00.8977191Z","duration":"PT50.8130917S","correlationId":"af4ed699-8ec5-4ee0-a232-f7ea765e0589","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testd7aeb","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testd7aebNic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testd7aebIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2026-02-16T00:55:22.2606282+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e3707019-fbbc-49f0-96e7-e9cececb58d5","platformFaultDomainCount":5,"timeCreated":"2026-02-16T00:55:22.2606282+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' headers: cache-control: - no-cache @@ -713,7 +731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:55 GMT + - Mon, 16 Feb 2026 00:56:13 GMT expires: - '-1' pragma: @@ -727,7 +745,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A21AE06E5AED47E3BEDCBDCBE9CBA662 Ref B: TYO201100113049 Ref C: 2024-08-26T08:12:55Z' + - 'Ref A: C76410FE8E8B45B39AC30EDAB7DD1F14 Ref B: SG2AA1040513034 Ref C: 2026-02-16T00:56:13Z' status: code: 200 message: OK @@ -744,23 +762,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2024-08-26T08:11:07Z","module":"vm","DateCreated":"2024-08-26T08:11:13Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-16T00:54:11Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '500' + - '424' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:56 GMT + - Mon, 16 Feb 2026 00:56:14 GMT expires: - '-1' pragma: @@ -774,7 +792,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FD2133AE578B4CA9AA30F16F506E5B67 Ref B: TYO201100115033 Ref C: 2024-08-26T08:12:56Z' + - 'Ref A: 67201FDF93554DE5A695E9DF40F84741 Ref B: SG2AA1070302054 Ref C: 2026-02-16T00:56:15Z' status: code: 200 message: OK @@ -791,25 +809,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:56 GMT + - Mon, 16 Feb 2026 00:56:16 GMT expires: - '-1' pragma: @@ -820,12 +841,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/0ab36ea5-56b8-419d-94c1-4e0cfa626d57 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C74FC51D50104ED891E0D13E50ECA72E Ref B: TYO201100113047 Ref C: 2024-08-26T08:12:57Z' + - 'Ref A: 3CC722032B0A4A9AA20F5D363E2CA4EF Ref B: SG2AA1070304036 Ref C: 2026-02-16T00:56:15Z' status: code: 200 message: OK @@ -842,37 +865,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:58 GMT + - Mon, 16 Feb 2026 00:56:17 GMT expires: - '-1' pragma: @@ -883,12 +905,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/06096727-8ab3-4d8c-950e-41225d96a947 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73956 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3E79CB97B1344C70847635AE8FB28264 Ref B: TYO201100117035 Ref C: 2024-08-26T08:12:58Z' + - 'Ref A: 196015AC3E0D4116B1526BFB8B8EC073 Ref B: SG2AA1070305062 Ref C: 2026-02-16T00:56:16Z' status: code: 200 message: OK @@ -905,23 +929,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts?api-version=2025-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-08-26T08:11:13.5493262Z","key2":"2024-08-26T08:11:13.5493262Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-26T08:11:14.8929934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-26T08:11:14.8929934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-08-26T08:11:13.4243591Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-02-16T00:54:26.8436114Z","key2":"2026-02-16T00:54:26.8436114Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-16T00:54:26.8591942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-16T00:54:26.8591942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2026-02-16T00:54:26.6248029Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '1361' + - '1399' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:59 GMT + - Mon, 16 Feb 2026 00:56:18 GMT expires: - '-1' pragma: @@ -932,10 +956,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - 20155720-35b4-45d7-8845-9af402e630c3 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AF0671C8172C4307826E344405DA5769 Ref B: TYO201100113009 Ref C: 2024-08-26T08:12:58Z' + - 'Ref A: 5585600880A44E338ED6A0368AAF5517 Ref B: SG2AA1070304023 Ref C: 2026-02-16T00:56:18Z' status: code: 200 message: OK @@ -952,14 +978,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?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 @@ -967,8 +993,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -976,8 +1005,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -985,8 +1017,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -994,8 +1029,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -1003,53 +1041,130 @@ 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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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":"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":"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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1057,9 +1172,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1067,9 +1183,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1077,41 +1194,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1119,63 +1236,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1183,18 +1307,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1202,9 +1328,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -1212,9 +1339,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1222,9 +1350,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1232,9 +1361,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1242,9 +1372,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1252,18 +1383,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -1271,9 +1404,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -1281,44 +1415,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -1326,18 +1467,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1345,225 +1488,260 @@ 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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","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 + 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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US + 2 EUAP"],"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","East US + 2 EUAP"],"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","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","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 @@ -1571,34 +1749,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1606,31 +1791,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1638,40 +1823,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1679,15 +1865,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1695,9 +1876,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -1705,15 +1887,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1721,18 +1898,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"],"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -1740,15 +1919,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1756,9 +1930,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1766,9 +1941,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -1776,9 +1952,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1786,9 +1963,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1796,9 +1974,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1806,31 +1985,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -1838,9 +2017,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"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 @@ -1848,9 +2039,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-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","Central US EUAP","East US 2 EUAP"],"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 @@ -1858,9 +2061,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1868,235 +2072,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2104,15 +2334,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2120,18 +2345,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -2139,9 +2366,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -2149,18 +2377,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2168,111 +2398,162 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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":"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":"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, + 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":["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 + 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":["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 + 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":["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, + 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":"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 - North","East US","West India","East US 2","Australia 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"],"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, + SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea + South","France Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/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"}' + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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":"virtualNetworkAppliances","locations":["East + US 2 EUAP","Central US EUAP","West US","East US","East Asia","North Europe","West + Europe","East US 2","West Central US","UK South"],"apiVersions":["2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '226648' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:01 GMT + - Mon, 16 Feb 2026 00:56:20 GMT expires: - '-1' pragma: @@ -2286,7 +2567,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 58AA34727C114CA58ECF4DEF35201D20 Ref B: TYO201100113033 Ref C: 2024-08-26T08:13:00Z' + - 'Ref A: 1242402DFCCF4FA482A802F8E601EB3E Ref B: SG2AA1070304054 Ref C: 2026-02-16T00:56:18Z' status: code: 200 message: OK @@ -2303,9 +2584,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01 response: @@ -2321,7 +2602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:01 GMT + - Mon, 16 Feb 2026 00:56:20 GMT expires: - '-1' pragma: @@ -2335,7 +2616,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 4908C6B2A4374ECD900F47CF3C538D1F Ref B: TYO201100114017 Ref C: 2024-08-26T08:13:02Z' + - 'Ref A: 2DCCD127FA3145D08C440747F271274B Ref B: SG2AA1040512025 Ref C: 2026-02-16T00:56:20Z' status: code: 404 message: Not Found @@ -2352,25 +2633,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:02 GMT + - Mon, 16 Feb 2026 00:56:22 GMT expires: - '-1' pragma: @@ -2381,12 +2665,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/710ad227-6492-4bcb-920c-d667066b125a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7B9CC5118EDD46CFB57105EAD7D7452E Ref B: TYO201100114009 Ref C: 2024-08-26T08:13:02Z' + - 'Ref A: A5FDEFB50DE64B62945050D1460E157E Ref B: SG2AA1040517036 Ref C: 2026-02-16T00:56:21Z' status: code: 200 message: OK @@ -2403,37 +2689,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:03 GMT + - Mon, 16 Feb 2026 00:56:22 GMT expires: - '-1' pragma: @@ -2444,12 +2729,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/162cdfaa-f238-48ea-a751-5ac994418e65 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73955 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E24A68FDE05141DD83DEA529FCC1E410 Ref B: TYO201100114025 Ref C: 2024-08-26T08:13:03Z' + - 'Ref A: 8ED033926DB24B7BB405162FED9AB60C Ref B: SG2AA1040517031 Ref C: 2026-02-16T00:56:22Z' status: code: 200 message: OK @@ -2466,25 +2753,28 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?$expand=properties&$orderby=name%20desc&$top=1&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]" + string: "[\r\n {\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n + \ \"replicaCount\": null,\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"extendedLocation\": null,\r\n \"location\": \"westus\",\r\n + \ \"name\": \"16.04.202109281\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n + \ }\r\n]" headers: cache-control: - no-cache content-length: - - '286' + - '522' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:03 GMT + - Mon, 16 Feb 2026 00:56:24 GMT expires: - '-1' pragma: @@ -2495,12 +2785,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/a1e64e8b-89eb-4c89-919b-c9962067c3cc x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8060F45E43234AD2804BE6E6628053B4 Ref B: TYO201151004060 Ref C: 2024-08-26T08:13:04Z' + - 'Ref A: 8FF34813E1BD40D99265D595FBF86865 Ref B: SG2AA1070306040 Ref C: 2026-02-16T00:56:23Z' status: code: 200 message: OK @@ -2517,37 +2809,36 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202109281?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}" + 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 \"imageDiscontinuationStatus\": + {\r\n \"imageDiscontinuationState\": \"None\",\r\n \"imageDiscontinuationDate\": + \"9999-12-31T23:59:59.9999999+00:00\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\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\": 32213303808\r\n + \ },\r\n \"dataDiskImages\": [],\r\n \"goLiveDate\": \"2025-11-13T00:00:00+00:00\"\r\n + \ },\r\n \"location\": \"westus\",\r\n \"name\": \"16.04.202109281\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.202109281\"\r\n}" headers: cache-control: - no-cache content-length: - - '1025' + - '1144' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:04 GMT + - Mon, 16 Feb 2026 00:56:25 GMT expires: - '-1' pragma: @@ -2558,12 +2849,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/4f42e55e-77ec-44d1-8e35-01d234e266aa x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73954 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B8B4F39B8CFE466EA5448A80AADE5C78 Ref B: TYO201151002031 Ref C: 2024-08-26T08:13:05Z' + - 'Ref A: E2A8D614348648F9873822AE091B09C6 Ref B: SG2AA1070303023 Ref C: 2026-02-16T00:56:24Z' status: code: 200 message: OK @@ -2580,14 +2873,14 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?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":"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 @@ -2595,8 +2888,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2604,8 +2900,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2613,8 +2912,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2622,8 +2924,11 @@ 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","Central + US EUAP","East US 2 EUAP"],"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 @@ -2631,53 +2936,130 @@ 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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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","Central + US EUAP","East US 2 EUAP"],"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":"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":"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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2685,9 +3067,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2695,9 +3078,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -2705,41 +3089,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2747,63 +3131,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2811,18 +3202,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2830,9 +3223,10 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East - US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2840,9 +3234,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2850,9 +3245,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2860,9 +3256,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2870,9 +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","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2880,18 +3278,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -2899,9 +3299,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2909,44 +3310,51 @@ interactions: Central","Canada East","West Central US","West US 2","UK West","UK South","France Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -2954,18 +3362,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2973,225 +3383,260 @@ 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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-07-01","2025-05-01","2025-03-01","2025-01-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","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 + 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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US + 2 EUAP"],"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","East US + 2 EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","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 @@ -3199,34 +3644,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3234,31 +3686,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3266,40 +3718,41 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3307,15 +3760,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3323,9 +3771,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -3333,15 +3782,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -3349,18 +3793,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"],"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -3368,15 +3814,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3384,9 +3825,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3394,9 +3836,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -3404,9 +3847,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -3414,9 +3858,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -3424,9 +3869,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -3434,31 +3880,31 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"Central US EUAP","zones":[]},{"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":"East + US 2 EUAP","zones":["4","2","3","1"]},{"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 + Central US","zones":[]},{"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","zones":[]},{"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 @@ -3466,9 +3912,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","Central US EUAP","East US 2 EUAP"],"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 @@ -3476,9 +3934,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-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","Central US EUAP","East US 2 EUAP"],"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 @@ -3486,9 +3956,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -3496,235 +3967,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3732,15 +4229,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -3748,18 +4240,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -3767,9 +4261,10 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -3777,18 +4272,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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -3796,111 +4293,162 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2024-11-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","Norway East","West US 3","Sweden Central","Qatar Central","Poland + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Indonesia Central","Chile Central","Malaysia West","Austria + East","Belgium Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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","East US 2 EUAP","Central US EUAP"],"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","East US 2 EUAP","Central US EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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","Central US EUAP","East US 2 EUAP"],"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":"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":"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, + 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":["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 + 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":["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 + 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":["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, + 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":"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 - North","East US","West India","East US 2","Australia 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"],"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, + SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea + South","France Central","Australia Central","South Africa North","UAE North","Switzerland + North","Germany West Central","Norway East","West US 3","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Indonesia Central","Chile Central","Malaysia + West","Austria East","Belgium Central"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/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"}' + US EUAP","East US 2 EUAP"],"apiVersions":["2025-05-01","2025-03-01","2025-01-01","2024-10-01","2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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":"virtualNetworkAppliances","locations":["East + US 2 EUAP","Central US EUAP","West US","East US","East Asia","North Europe","West + Europe","East US 2","West Central US","UK South"],"apiVersions":["2025-05-01","2025-03-01"],"defaultApiVersion":"2025-03-01","capabilities":"SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195339' + - '226648' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:07 GMT + - Mon, 16 Feb 2026 00:56:28 GMT expires: - '-1' pragma: @@ -3914,7 +4462,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DA3BBDE44B0A47069D89FA180654D65D Ref B: TYO201151004025 Ref C: 2024-08-26T08:13:06Z' + - 'Ref A: B516BA46642447C68C35929EABC28572 Ref B: SG2AA1070304029 Ref C: 2026-02-16T00:56:25Z' status: code: 200 message: OK @@ -3931,11 +4479,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2025-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -3949,7 +4497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:08 GMT + - Mon, 16 Feb 2026 00:56:28 GMT expires: - '-1' pragma: @@ -3963,7 +4511,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: BB7265697A654CD5BA8037C6F0635789 Ref B: TYO201151002054 Ref C: 2024-08-26T08:13:08Z' + - 'Ref A: FA0F0E2CE5664FB68A0FF707E3F8A5C6 Ref B: SG2AA1040512062 Ref C: 2026-02-16T00:56:28Z' status: code: 404 message: Not Found @@ -3971,7 +4519,7 @@ interactions: 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.Storage/storageAccounts", "name": "vhdstorage79e96c4e4cf806", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstoragef8d24c9930c000", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vnet1", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, @@ -3989,16 +4537,16 @@ interactions: {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"}}}, - {"apiVersion": "2024-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806", + {"apiVersion": "2025-04-01", "type": "Microsoft.Compute/virtualMachines", "name": + "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000", "Microsoft.Network/networkInterfaces/testdiagvmVMNic"], "properties": {"hardwareProfile": - {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": + {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": "osdisk_79e96c4e4c", "caching": "ReadWrite", "vhd": {"uri": - "https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd"}}, + "fromImage", "name": "osdisk_f8d24c9930", "caching": "ReadWrite", "vhd": {"uri": + "https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "testdiagvm", + "16.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "testdiagvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": "TestTest12#$"}}, "mode": "incremental"}}' @@ -4012,30 +4560,30 @@ interactions: Connection: - keep-alive Content-Length: - - '3394' + - '3392' Content-Type: - application/json ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","name":"vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4493899114347156105","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T08:13:12.15255Z","duration":"PT0.0005158S","correlationId":"94f5f14e-1b6a-4b9c-887a-d51704493d63","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage79e96c4e4cf806"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","name":"vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16666837761653360773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-16T00:56:30.1493886Z","duration":"PT0.0006465S","correlationId":"9f839a69-361f-42d4-b27e-5134cad5b709","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef8d24c9930c000"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58/operationStatuses/08584769468952086328?api-version=2024-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk cache-control: - no-cache content-length: - - '3021' + - '3024' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Mon, 16 Feb 2026 00:56:30 GMT expires: - '-1' pragma: @@ -4047,13 +4595,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.573.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 098376BFBDA24D10A8CE658F621FAE53 Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:09Z' + - 'Ref A: A60D87C37AE640DB8F6B3AF938BD698D Ref B: SG2AA1070304031 Ref C: 2026-02-16T00:56:29Z' status: code: 201 message: Created @@ -4070,11 +4618,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk response: body: string: '{"status":"Running"}' @@ -4086,7 +4634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Mon, 16 Feb 2026 00:56:31 GMT expires: - '-1' pragma: @@ -4100,7 +4648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DEA1EC7403474EF2BF2B649598D718F8 Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:13Z' + - 'Ref A: 3E9DC07C52974813A19A7A0D0D00D883 Ref B: SG2AA1070306052 Ref C: 2026-02-16T00:56:31Z' status: code: 200 message: OK @@ -4117,11 +4665,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk response: body: string: '{"status":"Running"}' @@ -4133,7 +4681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:44 GMT + - Mon, 16 Feb 2026 00:57:01 GMT expires: - '-1' pragma: @@ -4147,7 +4695,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 70064AC05E0C4BF2A132E6077A38189F Ref B: TYO201100115017 Ref C: 2024-08-26T08:13:43Z' + - 'Ref A: 3FC5A18932B94376A7CF4E26FC80D057 Ref B: SG2AA1040515062 Ref C: 2026-02-16T00:57:01Z' status: code: 200 message: OK @@ -4164,11 +4712,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769468952086328?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk response: body: string: '{"status":"Succeeded"}' @@ -4180,7 +4728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:14 GMT + - Mon, 16 Feb 2026 00:57:31 GMT expires: - '-1' pragma: @@ -4194,7 +4742,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 15FEA6E998544AF0A9FB43A29F497E0C Ref B: TYO201100115017 Ref C: 2024-08-26T08:14:14Z' + - 'Ref A: 68659444C3D14BF5BF3D14AE1E8FC9AF Ref B: SG2AA1070301029 Ref C: 2026-02-16T00:57:32Z' status: code: 200 message: OK @@ -4211,23 +4759,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","name":"vm_deploy_TtaKYn8NdVBds4FsjbF7h4joZAo9yV58","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4493899114347156105","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T08:14:10.6418948Z","duration":"PT58.4898606S","correlationId":"94f5f14e-1b6a-4b9c-887a-d51704493d63","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage79e96c4e4cf806"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage79e96c4e4cf806"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","name":"vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16666837761653360773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-16T00:57:27.5448877Z","duration":"PT57.3954991S","correlationId":"9f839a69-361f-42d4-b27e-5134cad5b709","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef8d24c9930c000"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000"}]}}' headers: cache-control: - no-cache content-length: - - '4149' + - '4150' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:15 GMT + - Mon, 16 Feb 2026 00:57:32 GMT expires: - '-1' pragma: @@ -4239,9 +4787,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: BA616976B60347CB87D15726A8A8AE43 Ref B: TYO201100115017 Ref C: 2024-08-26T08:14:15Z' + - 'Ref A: 07CE409F59314D808D8891993A42270D Ref B: SG2AA1070301062 Ref C: 2026-02-16T00:57:32Z' status: code: 200 message: OK @@ -4258,63 +4806,60 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\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\"\ - : \"2024-08-26T08:14:16+00:00\"\r\n }\r\n ]\r\n },\r\n\ - \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\"\ - ,\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:13:38.7255145+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:14:08.3357446+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:13:38.2568172+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\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\": + \"2026-02-16T00:57:34+00:00\"\r\n }\r\n ]\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+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\": \"2026-02-16T00:57:26.574841+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3042' + - '3039' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:15 GMT + - Mon, 16 Feb 2026 00:57:34 GMT expires: - '-1' pragma: @@ -4325,12 +4870,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;23996,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9CF75C3596664ABBBB233501B1C79F76 Ref B: TYO201100117007 Ref C: 2024-08-26T08:14:16Z' + - 'Ref A: 99843035FEA84637831F072F09812522 Ref B: SG2AA1070304040 Ref C: 2026-02-16T00:57:33Z' status: code: 200 message: '' @@ -4347,50 +4894,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"testdiagvmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - ,\r\n \"etag\": \"W/\\\"959601a4-409b-44f0-bc03-a00a67a9600f\\\"\",\r\n \ - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"5348e73c-d55d-4325-8c53-1f5965365dcb\",\r\n \ - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigtestdiagvm\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - ,\r\n \"etag\": \"W/\\\"959601a4-409b-44f0-bc03-a00a67a9600f\\\"\"\ - ,\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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\": \"x24ihe3ggteuhhgyjeba4psdvb.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-59-80-FD\",\r\n \"vnetEncryptionSupported\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - \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":"testdiagvmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","etag":"W/\"cc0dcf7a-d2b6-441f-9961-cb1b84551d05\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bb695f0a-ffd8-465b-b9b2-2c0c0f81a87d","ipConfigurations":[{"name":"ipconfigtestdiagvm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm","etag":"W/\"cc0dcf7a-d2b6-441f-9961-cb1b84551d05\"","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_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"wawp41bv1eiepordlobkjj5q0c.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-35-20-5C","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2597' + - '2152' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:17 GMT + - Mon, 16 Feb 2026 00:57:33 GMT etag: - - W/"959601a4-409b-44f0-bc03-a00a67a9600f" + - W/"cc0dcf7a-d2b6-441f-9961-cb1b84551d05" expires: - '-1' pragma: @@ -4402,14 +4924,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9609c5f2-f5dd-4359-a669-32464c554b03 + - e91de9a9-c652-4d66-9912-713adddcffa4 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E02A6DBEE7B441C8BF1A1682E682D8C9 Ref B: TYO201100113021 Ref C: 2024-08-26T08:14:16Z' + - 'Ref A: FFBB71AFC6C2463C9A2D9A8112211A87 Ref B: SG2AA1070301040 Ref C: 2026-02-16T00:57:34Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4423,35 +4945,25 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk - --subnet --vnet-name --nsg-rule + --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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"testdiagvmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP\"\ - ,\r\n \"etag\": \"W/\\\"9f676f03-ca1c-4234-ab55-731ea9ba5925\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef759a59-23b2-46b0-85d2-045cc345663d\"\ - ,\r\n \"ipAddress\": \"13.64.193.179\",\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - \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":"testdiagvmPublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","etag":"W/\"8f04ecff-e2dd-45ab-b9b7-1bb6dc192143\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5b44794d-cb52-4dfc-adf9-ab0cbbe22df1","ipAddress":"20.237.140.194","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '990' + - '856' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:18 GMT + - Mon, 16 Feb 2026 00:57:34 GMT etag: - - W/"9f676f03-ca1c-4234-ab55-731ea9ba5925" + - W/"8f04ecff-e2dd-45ab-b9b7-1bb6dc192143" expires: - '-1' pragma: @@ -4463,14 +4975,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41c3f39b-5537-4307-9004-2247a26f1313 + - ba913c97-37ed-4c41-afea-2c3e52e19a7a x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4495444499894E9880DEA7FAD6E681FF Ref B: TYO201100117037 Ref C: 2024-08-26T08:14:18Z' + - 'Ref A: 36EBB86A2BB348FE98D121BBA5680E8A Ref B: SG2AA1040512029 Ref C: 2026-02-16T00:57:34Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4485,30 +4997,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"effc6369-6b0b-4048-8e5e-6b37bf66f6d2\\\"\",\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_VM_VMSS_DIAGNOSTICS_EXTENSIONNL2QYULJ3ZSYLQUFV7JDZTKEMJMOMPXZHOQM3/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"b32a8505-84a8-4e2e-af9b-8425c96d2729\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONVRNCYSLWBJCSYIN42ZIN7YWHXJMFNRHRNTC5G/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '905' + - '761' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:20 GMT + - Mon, 16 Feb 2026 00:57:38 GMT etag: - - W/"effc6369-6b0b-4048-8e5e-6b37bf66f6d2" + - W/"b32a8505-84a8-4e2e-af9b-8425c96d2729" expires: - '-1' pragma: @@ -4520,14 +5025,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6d771a9-a566-46a7-ac36-190defdfc219 + - 756c6d03-8d25-4b9a-8e67-1204737374c3 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/b2e79d4b-636d-4f48-ac79-dd7a0e183e09 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B9DCBC90C19849049E42738BA9C8A8B2 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: A61372790B9644FCA525B15DB1B6099B Ref B: SG2AA1040520034 Ref C: 2026-02-16T00:57:38Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "defaultOutboundAccess": @@ -4549,33 +5056,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"8211b20d-403d-4ae3-969e-b11cb4f10312\\\"\",\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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f5c4becb-21b0-4813-989c-dc0ef53d4406\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}],"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/39bad533-7c10-4d8d-9bee-d681533c83d3?api-version=2024-01-01&t=638602568612983354&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=j4bwTtAE5MT3t-FONuxMElNLFB2pLsMqqY6ubJfiDhP-oclYjrduD1VVqGzrc8GpsL8ElYoNYvsyBxkDrManpByMb08yyeYStYWSra-zI7Rlq-3ppiH_6c1EPrK1o7NGnL5OoC7Yu5IHX32JrgAisJ6fJxC5cjPZtQNX2zaTBXqtqL-pBQnXSwLYLRNf8k_urb9nDZErYxGZUq_VZ3bff4HcCcj44a_TJa2UrWeZD8i1TLSTypc-4T_JBN_ToYaPsoe40FLJxRuHmBtoawGgXSD1S0nad8ulxSi-Hlo6V_eahzTgwP771qi3XsVdH37PROl6-GERlX2XABkPqe5Dxw&h=ZdUb9dKMUQmt0B6rX48XM_phdlNq5hZD0o6acCZerDY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a078aa62-b501-45d2-895d-193ea9d70919?api-version=2024-07-01&t=639068002598427610&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=KlLLsjwi26QzDGbrt_H06WAYGheGzFtX5Qn5OISS_iccsckljsQB4-PPdlu3YghWfuTYoZc_kxVlBqQ1XlxNfkUnYeKRlrXC6WilEqXsvt73WjuEX6CC7nJ_zSP9VxUw4eoq2pt7uUOGCxxEEoQxRqBw_lFzk7ni9SX-r9nW-L9yU1pzrzmm-VjBGlAB5lXVEA8_a7YGHbWxr39r2s4z9aUymkKjniLPF8TrXNinwgthoQY4UbXhS8L-MJIi80zNCzjfh-4mvD7Q-sGqxXYu16HfHNB2Mx-aGnuXWHgsOBc3gSBe4uYzt0WmmOZEkLoYOmSQugRGVgiKf_fwgm3HDA&h=gVC9oy2uPBCWUFtzcOSIETRtQ1tzZ1lGqqmtZaWLiNQ cache-control: - no-cache content-length: - - '910' + - '759' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Mon, 16 Feb 2026 00:57:39 GMT expires: - '-1' pragma: @@ -4587,16 +5086,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c99eca04-a1d3-4d01-9464-b5cda1573fda + - 519ee6dd-6147-494b-8c74-cf2411a6dd60 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/15abef89-3155-48dc-bda9-02defd961a10 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 242F0D5AFE794D64BF588419C1803E2A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: 59FB52300BB746C19EC3C251D3CDCD3B Ref B: SG2AA1040515054 Ref C: 2026-02-16T00:57:39Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4611,21 +5112,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39bad533-7c10-4d8d-9bee-d681533c83d3?api-version=2024-01-01&t=638602568612983354&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=j4bwTtAE5MT3t-FONuxMElNLFB2pLsMqqY6ubJfiDhP-oclYjrduD1VVqGzrc8GpsL8ElYoNYvsyBxkDrManpByMb08yyeYStYWSra-zI7Rlq-3ppiH_6c1EPrK1o7NGnL5OoC7Yu5IHX32JrgAisJ6fJxC5cjPZtQNX2zaTBXqtqL-pBQnXSwLYLRNf8k_urb9nDZErYxGZUq_VZ3bff4HcCcj44a_TJa2UrWeZD8i1TLSTypc-4T_JBN_ToYaPsoe40FLJxRuHmBtoawGgXSD1S0nad8ulxSi-Hlo6V_eahzTgwP771qi3XsVdH37PROl6-GERlX2XABkPqe5Dxw&h=ZdUb9dKMUQmt0B6rX48XM_phdlNq5hZD0o6acCZerDY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a078aa62-b501-45d2-895d-193ea9d70919?api-version=2024-07-01&t=639068002598427610&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=KlLLsjwi26QzDGbrt_H06WAYGheGzFtX5Qn5OISS_iccsckljsQB4-PPdlu3YghWfuTYoZc_kxVlBqQ1XlxNfkUnYeKRlrXC6WilEqXsvt73WjuEX6CC7nJ_zSP9VxUw4eoq2pt7uUOGCxxEEoQxRqBw_lFzk7ni9SX-r9nW-L9yU1pzrzmm-VjBGlAB5lXVEA8_a7YGHbWxr39r2s4z9aUymkKjniLPF8TrXNinwgthoQY4UbXhS8L-MJIi80zNCzjfh-4mvD7Q-sGqxXYu16HfHNB2Mx-aGnuXWHgsOBc3gSBe4uYzt0WmmOZEkLoYOmSQugRGVgiKf_fwgm3HDA&h=gVC9oy2uPBCWUFtzcOSIETRtQ1tzZ1lGqqmtZaWLiNQ 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:14:21 GMT + - Mon, 16 Feb 2026 00:57:40 GMT expires: - '-1' pragma: @@ -4637,14 +5138,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4b30d81-bd4a-4869-931d-81cef2d6605f + - 9bbd33a2-9c8f-4c5c-8e23-5e6cabfaf366 + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/142a9e0d-2ca9-4b59-b21b-11bf04fb9af7 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: EC4EBFDA4D1F4BB98E79DBC73C5F4CA9 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: 708F99ADC3FB402989ECDD7A38CDC837 Ref B: SG2AA1040515031 Ref C: 2026-02-16T00:57:40Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4659,31 +5162,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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"2957582c-0256-49f1-b6cf-7fc19bdaa0a7\\\"\",\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_VM_VMSS_DIAGNOSTICS_EXTENSIONNL2QYULJ3ZSYLQUFV7JDZTKEMJMOMPXZHOQM3/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM\"\ - \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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"42d35f77-5fe4-45ff-9b65-fa26cb22bae9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONVRNCYSLWBJCSYIN42ZIN7YWHXJMFNRHRNTC5G/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '942' + - '791' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Mon, 16 Feb 2026 00:57:41 GMT etag: - - W/"2957582c-0256-49f1-b6cf-7fc19bdaa0a7" + - W/"42d35f77-5fe4-45ff-9b65-fa26cb22bae9" expires: - '-1' pragma: @@ -4695,14 +5190,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0dbaa8c8-2f78-442b-b952-0b790e81e5a0 + - 4c74f775-8f4f-410c-b141-e07bff4e755a + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/427231af-0fb5-4da1-a02b-84da5c639a04 x-ms-ratelimit-remaining-subscription-global-reads: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 4929CDD15DFE4223A69ED60E5FAA793A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: 675A02F0576748609B6EC67DB798B923 Ref B: SG2AA1040519025 Ref C: 2026-02-16T00:57:41Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4717,52 +5214,44 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Mon, 16 Feb 2026 00:57:42 GMT etag: - '"3"' expires: @@ -4775,12 +5264,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;2399,Microsoft.Compute/GetVMScaleSetResource;34 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FAC3FB6238A840EE9ACE64A26088E760 Ref B: TYO201151003052 Ref C: 2024-08-26T08:14:22Z' + - 'Ref A: 32B071BC17674DD4B5048E563FB19A5A Ref B: SG2AA1070302023 Ref C: 2026-02-16T00:57:42Z' status: code: 200 message: '' @@ -4798,52 +5289,44 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\ - \r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n + \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Mon, 16 Feb 2026 00:57:42 GMT etag: - '"3"' expires: @@ -4856,27 +5339,29 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;33 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 969F4417B88E46CBA86520BFDE69C35B Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:23Z' + - 'Ref A: EF682BA0B108470B8D97168190512FB2 Ref B: SG2AA1070302025 Ref C: 2026-02-16T00:57:42Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier": + body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_B1ls", "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual"}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testdcd94", "adminUsername": + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testd7aeb", "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "testdcd94Nic", "properties": {"primary": true, "disableTcpStateTracking": false, + "testd7aebNic", "properties": {"primary": true, "disableTcpStateTracking": false, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"}, - "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testdcd94IPConfig", + "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testd7aebIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], @@ -5045,238 +5530,108 @@ interactions: Connection: - keep-alive Content-Length: - - '14679' + - '14677' Content-Type: - application/json ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+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/a683c72a-644e-4505-b82c-1b3799fbc11e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568697198559&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=IYvkh2yMZ7UMiY6Q4QOVaxiOgN9wRCiiRRciMYFHQvP24IQC2wxG5HWHAXBMgQa3Z0M6PR06KQABxiO7RX7oqEUp4c5vCOrrpxg5g8sEZ_WrGvZ8dUXhxN76L14ZQLq1C-oZSBxrlJXTGSdEBqevKDXSp7u3oeoPMqc_LqKsnSigI-5tN3j0FGRXFZsGYoyURrAPEmVkq3bl7kK5LyOAp66vNNrE2v-mOo0zjKYbwX51gZvgZWlve43MWbEwNf-z8foa2DMxQj7zfeF7zu_2tOM8Ff1EfP-3lxXYVuwgXfdEsgDK2G1JOYxWcRbknDv5BAiowG9KhpXKweKp2lZdpQ&h=SQz5DTKylT37AFyBa8_dyqP5M-fkWHbBAcYupBTbCiI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cfbb9765-4e7b-47e9-914a-ce89ce8130da?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002697432759&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=r3Isc22IA8Emuu_nOoY-gPHZHS4dSsZlJoYiLfOpHpJ8RfoT2nEScek3UZau4jHiucKMKgHF7GA8xQ3LXiKdp3YDkjQ5SJBZ5vVnWIEFJVfz9b7IClcFqEm6uZyvNBQMcHTA43YEk_O1TvCpQPwmLJ-YP8rHLhUkwrp-semchCZdzQTg90dH0DZ8zxSYCOwLPLA6H1_97EVhW7DNML8Ydx016MtjJ3fQfOMrg6tp0zsKnnYLAw128_HJQ6KrZ8BjGzy70NbYd-P3tMmsoiPtrMflM17oQhkUWEHDyB6KvQgTr1dDbroOax4kmg51kCuYGX_V4uYK9G1a1ZLlCwKdog&h=ADq-GpW_oL-nMU_2bd2kEUq3Svt7jtyWKfu13NHpP4U cache-control: - no-cache content-length: - - '14898' + - '14896' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:28 GMT + - Mon, 16 Feb 2026 00:57:49 GMT etag: - '"4"' expires: @@ -5289,6 +5644,10 @@ 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/382aa657-3732-41a1-8215-24bdd3ec1fd2 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5298,7 +5657,7 @@ interactions: x-ms-request-charge: - '0' x-msedge-ref: - - 'Ref A: 103943B15FA5468C801437723F8A3A9A Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:23Z' + - 'Ref A: ADC4DE6D65B24D3188F3F99161DDB6CC Ref B: SG2AA1040518052 Ref C: 2026-02-16T00:57:43Z' status: code: 200 message: '' @@ -5316,14 +5675,14 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a683c72a-644e-4505-b82c-1b3799fbc11e?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568697198559&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=IYvkh2yMZ7UMiY6Q4QOVaxiOgN9wRCiiRRciMYFHQvP24IQC2wxG5HWHAXBMgQa3Z0M6PR06KQABxiO7RX7oqEUp4c5vCOrrpxg5g8sEZ_WrGvZ8dUXhxN76L14ZQLq1C-oZSBxrlJXTGSdEBqevKDXSp7u3oeoPMqc_LqKsnSigI-5tN3j0FGRXFZsGYoyURrAPEmVkq3bl7kK5LyOAp66vNNrE2v-mOo0zjKYbwX51gZvgZWlve43MWbEwNf-z8foa2DMxQj7zfeF7zu_2tOM8Ff1EfP-3lxXYVuwgXfdEsgDK2G1JOYxWcRbknDv5BAiowG9KhpXKweKp2lZdpQ&h=SQz5DTKylT37AFyBa8_dyqP5M-fkWHbBAcYupBTbCiI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cfbb9765-4e7b-47e9-914a-ce89ce8130da?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002697432759&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=r3Isc22IA8Emuu_nOoY-gPHZHS4dSsZlJoYiLfOpHpJ8RfoT2nEScek3UZau4jHiucKMKgHF7GA8xQ3LXiKdp3YDkjQ5SJBZ5vVnWIEFJVfz9b7IClcFqEm6uZyvNBQMcHTA43YEk_O1TvCpQPwmLJ-YP8rHLhUkwrp-semchCZdzQTg90dH0DZ8zxSYCOwLPLA6H1_97EVhW7DNML8Ydx016MtjJ3fQfOMrg6tp0zsKnnYLAw128_HJQ6KrZ8BjGzy70NbYd-P3tMmsoiPtrMflM17oQhkUWEHDyB6KvQgTr1dDbroOax4kmg51kCuYGX_V4uYK9G1a1ZLlCwKdog&h=ADq-GpW_oL-nMU_2bd2kEUq3Svt7jtyWKfu13NHpP4U response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:29.3514229+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:14:29.8045577+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a683c72a-644e-4505-b82c-1b3799fbc11e\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:57:49.4657761+00:00\",\r\n \"endTime\": + \"2026-02-16T00:57:49.9189166+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cfbb9765-4e7b-47e9-914a-ce89ce8130da\"\r\n}" headers: cache-control: - no-cache @@ -5332,7 +5691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Mon, 16 Feb 2026 00:57:49 GMT expires: - '-1' pragma: @@ -5343,12 +5702,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/c0681e4c-84c8-43e4-a756-5fd4efee2e52 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14971 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 9883AFC84B3347C9BE9763E0C3EAF55E Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:29Z' + - 'Ref A: 7E70F065E855450FAFDE48AA49D2759C Ref B: SG2AA1070302040 Ref C: 2026-02-16T00:57:50Z' status: code: 200 message: '' @@ -5366,228 +5729,98 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '14899' + - '14897' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Mon, 16 Feb 2026 00:57:50 GMT etag: - '"4"' expires: @@ -5600,12 +5833,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;2396,Microsoft.Compute/GetVMScaleSetResource;31 + - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;31 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E367703C471342ADAA8258963DC03FEA Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:30Z' + - 'Ref A: F3F3DE830DBC49E694DC0AFC3984D495 Ref B: SG2AA1070301029 Ref C: 2026-02-16T00:57:50Z' status: code: 200 message: '' @@ -5627,7 +5862,7 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss/manualupgrade?api-version=2024-11-01 response: @@ -5637,17 +5872,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc cache-control: - no-cache content-length: - '0' date: - - Mon, 26 Aug 2024 08:14:31 GMT + - Mon, 16 Feb 2026 00:57:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602568716612997&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=JC3N042JG_X6cGC-anP3PVn1dHLHPpoGBSHEbZHuVMJKp8C7zG3HWaYvhtai4MCSwy5E302xJzMZEARfwVrcdGlm7BlXEPdyzPHVt5q3U-gCSq6u8u0wJ96WsFxBDJPhglTC5Qrn9Dse76m8xUVvBvSBrER_J62DM6aCc5ClVfdkalXmcjhhTf_1EodE2IWFdWUEYr_H5Rtt-u7fXhdpHopBF3KZSYx-GEuFYvTQ_bzm-5ZfUNOJEoo3dv5BhQooHCrpkPsgpWxSZAxXuzgTRswfuHJY2UNLmB0dOzWW8ndyxukhYAgymMvrM6uZcRco_oIIi_YIQiBlqyhaxu8gtw&h=Uo1cSbKxJXrM3iydlCfjwo13KIFFpTa96zdlnt-aPq0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc pragma: - no-cache strict-transport-security: @@ -5656,6 +5891,10 @@ 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/2a22b710-2bc9-40e2-8f2e-b9e193a911b7 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5665,7 +5904,7 @@ interactions: x-ms-request-charge: - '2' x-msedge-ref: - - 'Ref A: 6BB24265EBFC49CDB7CC08F629A4E2AB Ref B: TYO201151005029 Ref C: 2024-08-26T08:14:31Z' + - 'Ref A: 1D617DBBDBDC49BAB6CE2AB4CD7CD6B8 Ref B: SG2AA1070302060 Ref C: 2026-02-16T00:57:51Z' status: code: 202 message: '' @@ -5683,14 +5922,66 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + response: + body: + string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 Feb 2026 00:57: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-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/6f13fb44-580b-426a-b777-ba6090d2d0ae + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 88D0F89D04E246F78CFF910C5D503D91 Ref B: SG2AA1040517036 Ref C: 2026-02-16T00:57:52Z' + status: + code: 200 + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss diagnostics set + Connection: + - keep-alive + ParameterSetName: + - -g --vmss-name --settings --protected-settings + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" headers: cache-control: - no-cache @@ -5699,7 +5990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:31 GMT + - Mon, 16 Feb 2026 00:58:22 GMT expires: - '-1' pragma: @@ -5710,12 +6001,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/8436dbed-4f8f-4a03-afa3-36a871b8a6ce x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14970 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 0AEFD0217E95480F9472F586B15014C2 Ref B: TYO201151005029 Ref C: 2024-08-26T08:14:31Z' + - 'Ref A: 38CE3494A8284C9CB256FFD490E57B7F Ref B: SG2AA1040515062 Ref C: 2026-02-16T00:58:23Z' status: code: 200 message: '' @@ -5733,14 +6028,13 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" headers: cache-control: - no-cache @@ -5749,7 +6043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:01 GMT + - Mon, 16 Feb 2026 00:58:54 GMT expires: - '-1' pragma: @@ -5760,12 +6054,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/6a1a3492-6020-43d2-95be-6be210b447bf x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14985 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6E4D4A0815F2462EA96B1F1E3AFA4880 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:02Z' + - 'Ref A: 1E59124E0EFF42E793B4BA50B1EADCDF Ref B: SG2AA1070306060 Ref C: 2026-02-16T00:58:53Z' status: code: 200 message: '' @@ -5783,14 +6081,14 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602568716457467&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fViPXFpsh-JvHNrrK9MQCYCWlLotwtuPUDu6MAZi6t-HIVAXpiN7l-z8aGchT3D-JiG90KpFlWy9hqx3PcvPhch9x-bM2j2v9IrajlUZPOahnH-L8OidCFvZh198_8pYYfAKUMROqt3b6BZ9JuxB_myXcnvoL1Q14otOaGAFQbFZ95LHezSPV6ygC7R0AxeHf-Lng6WcAn1I4j2t0Q15l6LWRtd6sL8prZDxdELJN9GEskmBEk3EnelQMrFU8L7mY1TA-QP9ND4tKN2GZqqzYe6VgW72_e-7w7LfpPVSmEzZ3ZRKen4Lv97ermsHChepSvmTJtp8MmYiE6HfQZ-Ryw&h=Of2bhI2zFZh6Lp0qAfgAYyh3nYAG8Nn01sPbGrT1P5U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:14:31.4295862+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:15:32.2900438+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"350ec139-ab2a-4f69-a8c6-7411a7a1b9d4\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"endTime\": + \"2026-02-16T00:59:22.6545309+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" headers: cache-control: - no-cache @@ -5799,7 +6097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:31 GMT + - Mon, 16 Feb 2026 00:59:25 GMT expires: - '-1' pragma: @@ -5810,12 +6108,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/aa0dcc45-6582-4298-9379-9303cddb4bb9 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14973 + - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DFD3B89E5C044C93B6F27D02F6FC2326 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:32Z' + - 'Ref A: 25ECB1F3125E4412BACBB1712E5DB8C4 Ref B: SG2AA1070301042 Ref C: 2026-02-16T00:59:24Z' status: code: 200 message: '' @@ -5833,9 +6135,9 @@ interactions: ParameterSetName: - -g --vmss-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/350ec139-ab2a-4f69-a8c6-7411a7a1b9d4?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602568716612997&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=JC3N042JG_X6cGC-anP3PVn1dHLHPpoGBSHEbZHuVMJKp8C7zG3HWaYvhtai4MCSwy5E302xJzMZEARfwVrcdGlm7BlXEPdyzPHVt5q3U-gCSq6u8u0wJ96WsFxBDJPhglTC5Qrn9Dse76m8xUVvBvSBrER_J62DM6aCc5ClVfdkalXmcjhhTf_1EodE2IWFdWUEYr_H5Rtt-u7fXhdpHopBF3KZSYx-GEuFYvTQ_bzm-5ZfUNOJEoo3dv5BhQooHCrpkPsgpWxSZAxXuzgTRswfuHJY2UNLmB0dOzWW8ndyxukhYAgymMvrM6uZcRco_oIIi_YIQiBlqyhaxu8gtw&h=Uo1cSbKxJXrM3iydlCfjwo13KIFFpTa96zdlnt-aPq0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc response: body: string: '' @@ -5845,7 +6147,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Aug 2024 08:15:32 GMT + - Mon, 16 Feb 2026 00:59:25 GMT expires: - '-1' pragma: @@ -5856,12 +6158,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/5ca12c6a-2056-44b8-92fd-09233101785b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 22EA808E369646C38D877A001478F9A9 Ref B: TYO201151005029 Ref C: 2024-08-26T08:15:32Z' + - 'Ref A: 39B9ECEACBA948688B1A0F609BDACDFD Ref B: SG2AA1070303060 Ref C: 2026-02-16T00:59:26Z' status: code: 200 message: '' @@ -5879,228 +6185,98 @@ 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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\"\ - ,\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\"\ - : \"\\\"6\\\"\",\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\": \"testdcd94\"\ - ,\r\n \"adminUsername\": \"user11\",\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\": \"Canonical\",\r\n \"offer\": \"\ - UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ - : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ - :[{\"name\":\"testdcd94Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\ - :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"\ - },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testdcd94IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"\ - },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ - :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"\ - }]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\ - \n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\ - \n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \ - \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\"\ - ,\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\"\ - ,\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"\ - },{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n\ - \ },\r\n \"timeCreated\": \"2024-08-26T08:14:29.3514229+00:00\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\ - : true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\ - uniqueId\": \"487f4b67-97cb-45b5-b063-34b7b8ee14c6\",\r\n \"platformFaultDomainCount\"\ - : 5,\r\n \"timeCreated\": \"2024-08-26T08:12:04.8176232+00:00\"\r\n }\r\ - \n}" + string: "{\r\n \"name\": \"testdiagvmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss\",\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\": + \"\\\"6\\\"\",\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\": \"testd7aeb\",\r\n \"adminUsername\": + \"user11\",\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\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": + {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": + \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '14899' + - '14897' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:33 GMT + - Mon, 16 Feb 2026 00:59:26 GMT etag: - '"6"' expires: @@ -6113,12 +6289,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;2399,Microsoft.Compute/GetVMScaleSetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8C4851357F7048078AFDA863E5462731 Ref B: TYO201100116021 Ref C: 2024-08-26T08:15:33Z' + - 'Ref A: 41A17707098A4582BE83F63AF8F5F725 Ref B: SG2AA1070301062 Ref C: 2026-02-16T00:59:26Z' status: code: 200 message: '' @@ -6136,63 +6314,59 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:15:19+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\",\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:13:38.7255145+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:14:08.3357446+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:13:38.2568172+00:00\"\r\n\ - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T00:58:35+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+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\": \"2026-02-16T00:57:26.574841+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3137' + - '3134' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:34 GMT + - Mon, 16 Feb 2026 00:59:27 GMT expires: - '-1' pragma: @@ -6203,23 +6377,26 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23974,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 51FB6494B5BA465EBB60B0E8794A5A5C Ref B: TYO201151005052 Ref C: 2024-08-26T08:15:34Z' + - 'Ref A: 585E0B845343438781B8D744A93D8BF9 Ref B: SG2AA1040516054 Ref C: 2026-02-16T00:59:27Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "properties": {"publisher": "Microsoft.OSTCExtensions", - "type": "LinuxDiagnostic", "typeHandlerVersion": "2.3", "autoUpgradeMinorVersion": - true, "settings": {"StorageAccount": "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": - {"eventVolume": "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": - "PT1H"}, {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, - "performanceCounters": {"performanceCounterConfiguration": [{"annotation": [{"displayName": - "Disk read guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", + body: '{"location": "westus", "properties": {"autoUpgradeMinorVersion": true, + "protectedSettings": {"storageAccountName": "clitest000002", "storageAccountSasToken": + "123"}, "publisher": "Microsoft.OSTCExtensions", "settings": {"StorageAccount": + "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": {"eventVolume": + "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": "PT1H"}, + {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, "performanceCounters": + {"performanceCounterConfiguration": [{"annotation": [{"displayName": "Disk read + guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", "counter": "readbytespersecond", "counterSpecifier": "/builtin/disk/readbytespersecond", "type": "builtin", "unit": "BytesPerSecond"}, {"annotation": [{"displayName": "Disk writes", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", @@ -6363,8 +6540,8 @@ interactions: "LOG_DEBUG", "LOG_LOCAL4": "LOG_DEBUG", "LOG_LOCAL5": "LOG_DEBUG", "LOG_LOCAL6": "LOG_DEBUG", "LOG_LOCAL7": "LOG_DEBUG", "LOG_LPR": "LOG_DEBUG", "LOG_MAIL": "LOG_DEBUG", "LOG_NEWS": "LOG_DEBUG", "LOG_SYSLOG": "LOG_DEBUG", "LOG_USER": - "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "protectedSettings": - {"storageAccountName": "clitest000002", "storageAccountSasToken": "123"}}}' + "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "type": + "LinuxDiagnostic", "typeHandlerVersion": "2.3"}}' headers: Accept: - application/json @@ -6381,192 +6558,70 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\":\ - \ \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n\ - \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\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/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ cache-control: - no-cache content-length: @@ -6574,7 +6629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Mon, 16 Feb 2026 00:59:28 GMT expires: - '-1' pragma: @@ -6585,6 +6640,10 @@ 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/f3575b98-3997-4c4a-985f-9f25589d7798 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -6592,7 +6651,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 251DA43FD58341C198F68F9EB4FAE68D Ref B: TYO201100115021 Ref C: 2024-08-26T08:15:35Z' + - 'Ref A: 449C0F67FDE64465ACBD469BD1DBB192 Ref B: SG2AA1070306031 Ref C: 2026-02-16T00:59:28Z' status: code: 201 message: '' @@ -6610,14 +6669,13 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:15:37.0088753+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"27b067ee-2411-4200-b19f-e7f2f99ed20b\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:59:28.5139894+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"960c509e-ca62-4fcc-83ca-78fe89324932\"\r\n}" headers: cache-control: - no-cache @@ -6626,7 +6684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Mon, 16 Feb 2026 00:59:29 GMT expires: - '-1' pragma: @@ -6637,12 +6695,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/f96e6397-baa1-4335-a446-88c09b1e5336 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: CE73648E79684D5A9F45271B883055FE Ref B: TYO201100115021 Ref C: 2024-08-26T08:15:37Z' + - 'Ref A: A26468B804364199A3D7A3E099B91C3E Ref B: SG2AA1040513040 Ref C: 2026-02-16T00:59:29Z' status: code: 200 message: '' @@ -6660,14 +6722,14 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/27b067ee-2411-4200-b19f-e7f2f99ed20b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569373353852&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=QjslifUyl49WyCUwQ4qO0ZdKff1Z4NMACjQp1zRC9qDt-Hr40NI59M5VFY7HZyFI4tLbLqzCV-BnSFS9CmvZ5SZXKyk4LwGy0pjEJdsDIXfmXaJE662a8xxtoA1x72BIv3P_zqrzK23wll8UAGI_RIvB9ij6QqOSGC-fPs8a02fR8y7OtnPhhJRdwYH0hpapbccZqYZfK7brlwVg5LK4qemjn2KetHjiIOPbW8Vqu0erbVoWS_Y9voRbJa7WXdKfyV2qZXl6b9Lu9gWWFbzIEKRpFLPCKgylmICwISoR8Gp7CIYhsfTTRJuNBgnfSvu533ryGms-vvZE1ON4nvqv6g&h=iqLw7bI8HsDbpJtYFUyhFoEpjkRODOTHqIZO4d-64mg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:15:37.0088753+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:15:47.4466155+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"27b067ee-2411-4200-b19f-e7f2f99ed20b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T00:59:28.5139894+00:00\",\r\n \"endTime\": + \"2026-02-16T00:59:38.9360061+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"960c509e-ca62-4fcc-83ca-78fe89324932\"\r\n}" headers: cache-control: - no-cache @@ -6676,7 +6738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:07 GMT + - Mon, 16 Feb 2026 01:00:00 GMT expires: - '-1' pragma: @@ -6687,12 +6749,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/62b4778c-78bc-4c4f-9f63-75d7d30b7eaa x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14976 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FD1093FEC7514DD4B09E82A0ACD73C43 Ref B: TYO201100115021 Ref C: 2024-08-26T08:16:07Z' + - 'Ref A: 2C26227C1524476483528FED79531050 Ref B: SG2AA1040513029 Ref C: 2026-02-16T01:00:00Z' status: code: 200 message: '' @@ -6710,187 +6776,65 @@ interactions: ParameterSetName: - -g --vm-name -n --version --publisher --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\"\ - : \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n\ - \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -6899,7 +6843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:08 GMT + - Mon, 16 Feb 2026 01:00:01 GMT expires: - '-1' pragma: @@ -6910,12 +6854,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;23999,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 73D25526DB5A4450B2ABBB878271FE48 Ref B: TYO201100115021 Ref C: 2024-08-26T08:16:08Z' + - 'Ref A: 2E88DA9E60B64B43B5B93E8B0D45FF52 Ref B: SG2AA1040517060 Ref C: 2026-02-16T01:00:01Z' status: code: 200 message: '' @@ -6933,265 +6879,137 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:15:54+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \"\ - type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"2.3.9029\",\r\n \"status\": {\r\n \"code\": \"\ - ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ - \ \"displayStatus\": \"Ready\",\r\n \"message\":\ - \ \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\"\ - ,\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:13:38.7255145+00:00\"\r\n }\r\ - \n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n \ - \ {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\":\ - \ \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\"\ - : \"2.3.9029\",\r\n \"statuses\": [\r\n {\r\n \ - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ - : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"message\": \"Invalid mdsd config given. Can't enable.\ - \ This extension install/enable operation is still considered a success as\ - \ it's an external error. Config validation result: 2024-08-26T08:15:54.0360500Z:\ - \ Not all GCS env vars are defined. Missing 5: MONITORING_GCS_ENVIRONMENT\ - \ MONITORING_GCS_ACCOUNT MONITORING_GCS_REGION MONITORING_GCS_CERT_CERTFILE\ - \ MONITORING_GCS_CERT_KEYFILE. GCS won't be used.\\n2024-08-26T08:15:54.0425630Z:\ - \ Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0428980Z: Table SAS lacks\ - \ [tn=]: 123\\n2024-08-26T08:15:54.0429720Z: Table SAS lacks [tn=]: 123\\\ - n2024-08-26T08:15:54.0430260Z: Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0430730Z:\ - \ Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0431140Z: Table SAS lacks\ - \ [tn=]: 123\\n2024-08-26T08:15:54.0431620Z: Table SAS lacks [tn=]: 123\\\ - n2024-08-26T08:15:54.0431990Z: Table SAS lacks [tn=]: 123\\n2024-08-26T08:15:54.0432380Z:\ - \ Table SAS lacks [tn=]: 123\\nParse reported these messages:\\n/var/lib/waagent/Microsoft.OSTCExtensions.LinuxDiagnostic-2.3.9029/./xmlCfg.xml(7)\ - \ Warning: Empty value for IdentityComponent; hope that's okay\\n. Terminating\ - \ LAD as it can't proceed.\"\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:15:47.3215661+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:13:38.2568172+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n\ - \ \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"\ - autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\"\ - : \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \ - \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\"\ - :{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T00:59:52+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9029\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": + \"2026-02-16T00:56:56.3556823+00:00\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": + \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9029\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"message\": \"Invalid mdsd config given. Can't + enable. This extension install/enable operation is still considered a success + as it's an external error. Config validation result: 2026-02-16T00:59:48.6727500Z: + Not all GCS env vars are defined. Missing 5: MONITORING_GCS_ENVIRONMENT MONITORING_GCS_ACCOUNT + MONITORING_GCS_REGION MONITORING_GCS_CERT_CERTFILE MONITORING_GCS_CERT_KEYFILE. + GCS won't be used.\\n2026-02-16T00:59:48.6766330Z: Table SAS lacks [tn=]: + 123\\n2026-02-16T00:59:48.6769350Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6769990Z: + Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6770460Z: Table SAS lacks + [tn=]: 123\\n2026-02-16T00:59:48.6770840Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6771230Z: + Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6771650Z: Table SAS lacks + [tn=]: 123\\n2026-02-16T00:59:48.6772010Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6772400Z: + Table SAS lacks [tn=]: 123\\nParse reported these messages:\\n/var/lib/waagent/Microsoft.OSTCExtensions.LinuxDiagnostic-2.3.9029/./xmlCfg.xml(7) + Warning: Empty value for IdentityComponent; hope that's okay\\n. Terminating + LAD as it can't proceed.\"\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\": \"2026-02-16T00:59:38.8110062+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": + \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '17429' + - '17427' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:09 GMT + - Mon, 16 Feb 2026 01:00:01 GMT expires: - '-1' pragma: @@ -7202,12 +7020,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;23998,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: F50B5A948C354A34ADBF74A81FE4A8C3 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:09Z' + - 'Ref A: 8F97D4D3E5184218B7BA50D6D3E7F009 Ref B: SG2AA1040512052 Ref C: 2026-02-16T01:00:02Z' status: code: 200 message: '' @@ -7215,7 +7035,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7227,7 +7047,7 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: @@ -7237,17 +7057,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ cache-control: - no-cache content-length: - '0' date: - - Mon, 26 Aug 2024 08:16:10 GMT + - Mon, 16 Feb 2026 01:00:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-11-01&t=638602569708427164&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=iXl0KLLoGWFdlD4fwjjePknQ7V2b5PTR24U0cD7rU47siOfO0TPR4AUkbL4pVjmAU64bVgHICzogM14B2EjsplIcfNVc4f04qVjuIHomsH3-sNChHCOii72FYMFq5xtgy1xnpGliGQh4kn-XFHmfphOVcYg0r8on89sc68qGmI3p8dDEE3RPnHzj2yPb5gUuHiz7Px0ETsbBU_c_dWEx2ciPK0cS_vIGeFsrJ7bS5VeomQOGY0mmow08Jl8TGQp3ubJlE5pI2DGYcFl16ratFbBoueCYjW3dQaVlp3vJrGmXvkaVxWhv0l7uJuelx9NBzqN9nhQwq4PYRsJdtzyE8g&h=mv5AdkjW_wegEAKqMXg-7TBXs7oPNW4ofPkH9Vut5IA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068004031631817&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=VgXvyC2dAnd6lZyY4jPGkQFvarCOsCy7oZcXbG1Vbs8_-qC6D4YdlfNgf-U7VT0p2pj_rzly5103NTzxVEBVpSXnFx3eInzAwTUgQuGPYmJuuF2G3ndMPfw7pgLNE6w29ctGozWYZirvYRh6jRIykb3JxesWY4jkkrbvyfX50ztj5q20mXfhtgqLMvrYUEukl2fiOsz1Qe2dBZXU8jbk4-neI7p6W3Cbv1_yJ8iBPPDvAobpG1VYVN61maXNw1vWLyXzLjDE_0RSTIpTjO5Gf16cU7z3gCNKjs7JkJd-bsanxYvb7fWPbOARo1mC2QGiCXxVDKh2MNRCNtJvmTpvRA&h=tRI_tNTx6w4uQuBMY4atwJ-8NobWQ09KRygDGEnlh4I pragma: - no-cache strict-transport-security: @@ -7256,14 +7076,18 @@ 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/0d398f3c-47dd-428a-95da-7f0a8c215688 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;10 + - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: - '199' x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: 350CF17FCDED4F419CE83164462F0DF0 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:09Z' + - 'Ref A: AD900EDB39FE43379C5BA0F296518215 Ref B: SG2AA1040516031 Ref C: 2026-02-16T01:00:02Z' status: code: 202 message: '' @@ -7281,23 +7105,22 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:10.743851+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a7bdca37-7bdc-40bc-a76d-de4076513136\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T01:00:03.0925778+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b05a8aba-d82d-4b42-97e7-ec02b8d9135c\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:11 GMT + - Mon, 16 Feb 2026 01:00:03 GMT expires: - '-1' pragma: @@ -7308,12 +7131,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/7c7ad036-07ec-4928-b0d3-235235044884 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14975 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 436F3D2681A947FAA12CD975C870D191 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:10Z' + - 'Ref A: DEE2AA90371D4E7680C7AFCAE75D7EAF Ref B: SG2AA1040519031 Ref C: 2026-02-16T01:00:03Z' status: code: 200 message: '' @@ -7331,23 +7158,23 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a7bdca37-7bdc-40bc-a76d-de4076513136?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602569708270864&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=BoNtqPD0PhQsQ7lnk5-sEqJHAsvTonx5B0mqEt2elru0rAW3odcGNbB8ionH7u6F25xhmMhUlP_GKDPHX4-Dnk40xBA1VHFlH8koUEp98wqtP3bnWV33enyD21qKygcRwj5uP0PcS72uovrwxZ9m35Sy7kmFMd2nxGMMszUN-qvigJYx_Or5AB9wh5yyChEtMc4mtadBBQaiY1TgIEysC_wblKrYEt5AF63dqou9BEsZZXcH-b6hexannoGDf6Daf7YEqL_1k-Z_uRVnE-FeVLCHJRASq_BozGVrsm3oPBDZ-yxfz4HEX1moo1G9MTV2bz4eNeKHq2xJ5b2lk-nyIA&h=y4RoL-GBnOqkkCxyY-ORXcOlxK7TsgiMXEPpXT_ix4Q + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:10.743851+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:16:21.119032+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a7bdca37-7bdc-40bc-a76d-de4076513136\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T01:00:03.0925778+00:00\",\r\n \"endTime\": + \"2026-02-16T01:00:13.4989655+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b05a8aba-d82d-4b42-97e7-ec02b8d9135c\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:41 GMT + - Mon, 16 Feb 2026 01:00:35 GMT expires: - '-1' pragma: @@ -7358,12 +7185,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/0c15c92a-60fe-44da-8285-f5ac277b890d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F996F0410A67415B9B392FE7A68A5EC5 Ref B: TYO201100114019 Ref C: 2024-08-26T08:16:41Z' + - 'Ref A: 0464B107313B4A059E377C59B045C3DC Ref B: SG2AA1070303060 Ref C: 2026-02-16T01:00:34Z' status: code: 200 message: '' @@ -7381,63 +7212,59 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?$expand=instanceView&api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n\ - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.11.1.4\",\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:16:16+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"osdisk_79e96c4e4c\",\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:13:38.7255145+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:16:20.9784055+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:13:38.2568172+00:00\"\r\n\ - \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T01:00:10+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+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\": \"2026-02-16T01:00:13.3583389+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3137' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:42 GMT + - Mon, 16 Feb 2026 01:00:35 GMT expires: - '-1' pragma: @@ -7448,23 +7275,26 @@ interactions: - 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 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 87A9D9A122724287B8D88D3B0DB7A1F6 Ref B: TYO201100117009 Ref C: 2024-08-26T08:16:42Z' + - 'Ref A: CC9C0663104C49A5A0C94B9F7F0E365B Ref B: SG2AA1070303036 Ref C: 2026-02-16T01:00:35Z' status: code: 200 message: '' - request: - body: '{"location": "westus", "properties": {"publisher": "Microsoft.Azure.Diagnostics", - "type": "LinuxDiagnostic", "typeHandlerVersion": "3.0", "autoUpgradeMinorVersion": - true, "settings": {"StorageAccount": "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": - {"eventVolume": "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": - "PT1H"}, {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, - "performanceCounters": {"performanceCounterConfiguration": [{"annotation": [{"displayName": - "Disk read guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", + body: '{"location": "westus", "properties": {"autoUpgradeMinorVersion": true, + "protectedSettings": {"storageAccountName": "clitest000002", "storageAccountSasToken": + "123"}, "publisher": "Microsoft.Azure.Diagnostics", "settings": {"StorageAccount": + "clitest000002", "ladCfg": {"diagnosticMonitorConfiguration": {"eventVolume": + "Medium", "metrics": {"metricAggregation": [{"scheduledTransferPeriod": "PT1H"}, + {"scheduledTransferPeriod": "PT1M"}], "resourceId": "__VM_RESOURCE_ID__"}, "performanceCounters": + {"performanceCounterConfiguration": [{"annotation": [{"displayName": "Disk read + guest OS", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", "counter": "readbytespersecond", "counterSpecifier": "/builtin/disk/readbytespersecond", "type": "builtin", "unit": "BytesPerSecond"}, {"annotation": [{"displayName": "Disk writes", "locale": "en-us"}], "class": "disk", "condition": "IsAggregate=TRUE", @@ -7608,8 +7438,8 @@ interactions: "LOG_DEBUG", "LOG_LOCAL4": "LOG_DEBUG", "LOG_LOCAL5": "LOG_DEBUG", "LOG_LOCAL6": "LOG_DEBUG", "LOG_LOCAL7": "LOG_DEBUG", "LOG_LPR": "LOG_DEBUG", "LOG_MAIL": "LOG_DEBUG", "LOG_NEWS": "LOG_DEBUG", "LOG_SYSLOG": "LOG_DEBUG", "LOG_USER": - "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "protectedSettings": - {"storageAccountName": "clitest000002", "storageAccountSasToken": "123"}}}' + "LOG_DEBUG", "LOG_UUCP": "LOG_DEBUG"}}}, "sampleRateInSeconds": 15}}, "type": + "LinuxDiagnostic", "typeHandlerVersion": "3.0"}}' headers: Accept: - application/json @@ -7626,192 +7456,70 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Creating\",\r\n \"publisher\":\ - \ \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\ - \n \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Creating\",\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\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/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs cache-control: - no-cache content-length: @@ -7819,7 +7527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Mon, 16 Feb 2026 01:00:37 GMT expires: - '-1' pragma: @@ -7830,14 +7538,18 @@ 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/62bceebf-6a83-4b3f-823b-cf8d835d4931 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,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: DB9FD41A83BD477581AC1D9F17F768AD Ref B: TYO201100114023 Ref C: 2024-08-26T08:16:42Z' + - 'Ref A: BC89990F01954BF3ACCFD235C74CECA8 Ref B: SG2AA1070301042 Ref C: 2026-02-16T01:00:36Z' status: code: 201 message: '' @@ -7855,14 +7567,13 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" headers: cache-control: - no-cache @@ -7871,7 +7582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Mon, 16 Feb 2026 01:00:37 GMT expires: - '-1' pragma: @@ -7882,12 +7593,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/7e04a394-5e6b-4892-9721-337c2ef09524 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 6B804CD6EA3042E0BE563CCA431548D8 Ref B: TYO201100114023 Ref C: 2024-08-26T08:16:44Z' + - 'Ref A: CB2FA46A759144D680F4193622FF095F Ref B: SG2AA1070304031 Ref C: 2026-02-16T01:00:37Z' status: code: 200 message: '' @@ -7905,14 +7620,13 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" headers: cache-control: - no-cache @@ -7921,7 +7635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:14 GMT + - Mon, 16 Feb 2026 01:01:07 GMT expires: - '-1' pragma: @@ -7932,12 +7646,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/6f9ddeb8-a8b9-4139-996b-c86c317fc330 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14984 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6EF6B14B983B4576BA81FCD5C7038902 Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:15Z' + - 'Ref A: AC5ACC0539F44B349926889F7A0FBCD1 Ref B: SG2AA1040512052 Ref C: 2026-02-16T01:01:08Z' status: code: 200 message: '' @@ -7955,14 +7673,14 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14fc9c07-6443-46d1-814f-05d6aed56cbd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-11-01&t=638602570046694088&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=dVhKlKJ_-gGHyxPmZITnuEHHJ0xTLzra-BhiWI2YbX3_HTuuvwJDsxlEMIbZpHJ69tO4fjVFQljle3CUhFAqEAYniXBhQ5v-xjC1UJem-lqRiWfSZJPV0ZZ3wz_f0bs4YyxXop6Fb-H3-OepudVz_UPt_Hca1Lu8Ia7dnbyu7iKadkaAXT_CrueFdk8ryalHqTpz5VmBb1iJ_89ypUIvWsbAnUYOm_HfZvMHuYE_aGzEe4JHwExX-adJqfuXnbtjnSAhJehaavQ74-fZtXGk8y1kEDmZDB-Nz5v1L4PLN6LgJbHrsh2sLgfXku0Ve2bSRMpTcJRLO9D6EmTAZcb6Bg&h=as_pGHUsS9COL3Kaz2ixcFyuIMt7RSmv22zjNoMZz_U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs response: body: - string: "{\r\n \"startTime\": \"2024-08-26T08:16:44.4163304+00:00\",\r\n \"\ - endTime\": \"2024-08-26T08:17:44.9017759+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"14fc9c07-6443-46d1-814f-05d6aed56cbd\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"endTime\": + \"2026-02-16T01:01:37.6719429+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" headers: cache-control: - no-cache @@ -7971,7 +7689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:44 GMT + - Mon, 16 Feb 2026 01:01:38 GMT expires: - '-1' pragma: @@ -7982,12 +7700,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/a51f11d3-c691-4002-9b58-130b652d885b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 4D06136A3AA447CC8D26F907947080FF Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:45Z' + - 'Ref A: EACCBD152CB24B91B7FB3EE6499F8943 Ref B: SG2AA1040519060 Ref C: 2026-02-16T01:01:38Z' status: code: 200 message: '' @@ -8005,187 +7727,65 @@ interactions: ParameterSetName: - -g --vm-name --settings --protected-settings User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic?api-version=2024-11-01 response: body: - string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"\ - location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\"\ - : true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\"\ - : \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\ - \n \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\"\ - :\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\"\ - :\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\"\ - :\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"\ - },\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\"\ - :[{\"displayName\":\"Disk read guest OS\",\"locale\":\"en-us\"}],\"class\"\ - :\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk writes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk transfers\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk write\ - \ guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n}" + string: "{\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\n + \ \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n}" headers: cache-control: - no-cache @@ -8194,7 +7794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:45 GMT + - Mon, 16 Feb 2026 01:01:39 GMT expires: - '-1' pragma: @@ -8205,12 +7805,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;23971,Microsoft.Compute/LowCostGetResource;35 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 77A63F02D8B649968EDA8321DC277775 Ref B: TYO201100114023 Ref C: 2024-08-26T08:17:45Z' + - 'Ref A: 3B6C8711055E41BF89290ED2B22E1DB7 Ref B: SG2AA1070306052 Ref C: 2026-02-16T01:01:39Z' status: code: 200 message: '' @@ -8228,221 +7830,96 @@ 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.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm?api-version=2025-04-01 response: body: - string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\"\ - ,\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\": \"cf493711-a710-49a7-bcaf-4d0101afb9c1\"\ - ,\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\": \"osdisk_79e96c4e4c\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \ - \ \"uri\": \"https://vhdstorage79e96c4e4cf806.blob.core.windows.net/vhds/osdisk_79e96c4e4c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\ - : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\"\ - ,\r\n \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T08:13:38.2568172+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\"\ - : \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"\ - autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"\ - type\": \"LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"3.0\",\r\ - \n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"\ - diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"\ - metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\"\ - :\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\"\ - :{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"\ - Disk read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\"\ - :\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk writes\",\"locale\":\"en-us\"}],\"\ - class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\"\ - ,\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk transfer\ - \ time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\"\ - :\"Disk transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\"\ - :\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk write guest OS\",\"locale\":\"\ - en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\"\ - :\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"\ - },{\"annotation\":[{\"displayName\":\"Disk write time\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\"\ - ,\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk total bytes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Disk reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"\ - IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"\ - /builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Disk queue length\",\"locale\":\"en-us\"\ - }],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\"\ - ,\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"\ - builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network\ - \ in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"\ - bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"\ - type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"\ - Network total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\"\ - :\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network\ - \ out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Network collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received errors\",\"locale\":\"en-us\"}],\"class\":\"network\"\ - ,\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Packets sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\"\ - :\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\"\ - ,\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"\ - counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"\ - builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"\ - Filesystem % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem % used space\",\"\ - locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem read bytes/sec\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\"\ - :\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem % free inodes\",\"locale\"\ - :\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"\ - },{\"annotation\":[{\"displayName\":\"Filesystem reads/sec\",\"locale\":\"\ - en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\"\ - :\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\"\ - ,\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\"\ - :\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Filesystem writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\"\ - ,\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\"\ - :\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"\ - CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem % used inodes\"\ - ,\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\"\ - ,\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"\ - Percent\"},{\"annotation\":[{\"displayName\":\"CPU user time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\"\ - :\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"CPU percentage guest OS\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\"\ - :\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\"\ - :\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU idle time\",\"locale\"\ - :\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"\ - counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"CPU privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"\ - condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"\ - counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"\ - builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory\ - \ available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\"\ - ,\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\"\ - ,\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap percent used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\"\ - ,\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\"\ - ,\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory used\",\"\ - locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Page reads\",\"locale\":\"en-us\"}],\"class\"\ - :\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\"\ - ,\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\"\ - :\"Swap available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\"\ - :\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\"\ - :\"Swap percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Mem. percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"\ - counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\"\ - ,\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\"\ - :\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\"\ - ,\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\"\ - ,\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap used\"\ - ,\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\"\ - :\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"\ - annotation\":[{\"displayName\":\"Memory percentage\",\"locale\":\"en-us\"\ - }],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\"\ - :\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"\ - },{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"\ - class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\"\ - :\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"\ - }]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\"\ - ,\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\"\ - :\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\"\ - :\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"\ - LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"\ - LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\"\ - :\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\"\ - :\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"\ - sampleRateInSeconds\":15}}\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"name\": \"testdiagvm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm\",\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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": + \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n + \ \"adminUsername\": \"user11\",\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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n + \ \"timeCreated\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n },\r\n \"etag\": + \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"3.0\",\r\n \"settings\": {\"StorageAccount\":\"clitest000002\",\"ladCfg\":{\"diagnosticMonitorConfiguration\":{\"eventVolume\":\"Medium\",\"metrics\":{\"metricAggregation\":[{\"scheduledTransferPeriod\":\"PT1H\"},{\"scheduledTransferPeriod\":\"PT1M\"}],\"resourceId\":\"__VM_RESOURCE_ID__\"},\"performanceCounters\":{\"performanceCounterConfiguration\":[{\"annotation\":[{\"displayName\":\"Disk + read guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readbytespersecond\",\"counterSpecifier\":\"/builtin/disk/readbytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + writes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/disk/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + transfer time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagetransfertime\",\"counterSpecifier\":\"/builtin/disk/averagetransfertime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + transfers\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/disk/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + write guest OS\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writebytespersecond\",\"counterSpecifier\":\"/builtin/disk/writebytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + read time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagereadtime\",\"counterSpecifier\":\"/builtin/disk/averagereadtime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + write time\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagewritetime\",\"counterSpecifier\":\"/builtin/disk/averagewritetime\",\"type\":\"builtin\",\"unit\":\"Seconds\"},{\"annotation\":[{\"displayName\":\"Disk + total bytes\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/disk/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + reads\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/disk/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Disk + queue length\",\"locale\":\"en-us\"}],\"class\":\"disk\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"averagediskqueuelength\",\"counterSpecifier\":\"/builtin/disk/averagediskqueuelength\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Network + in guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytesreceived\",\"counterSpecifier\":\"/builtin/network/bytesreceived\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + total bytes\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestotal\",\"counterSpecifier\":\"/builtin/network/bytestotal\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + out guest OS\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"bytestransmitted\",\"counterSpecifier\":\"/builtin/network/bytestransmitted\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Network + collisions\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalcollisions\",\"counterSpecifier\":\"/builtin/network/totalcollisions\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totalrxerrors\",\"counterSpecifier\":\"/builtin/network/totalrxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetstransmitted\",\"counterSpecifier\":\"/builtin/network/packetstransmitted\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + received\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"packetsreceived\",\"counterSpecifier\":\"/builtin/network/packetsreceived\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Packets + sent errors\",\"locale\":\"en-us\"}],\"class\":\"network\",\"counter\":\"totaltxerrors\",\"counterSpecifier\":\"/builtin/network/totaltxerrors\",\"type\":\"builtin\",\"unit\":\"Count\"},{\"annotation\":[{\"displayName\":\"Filesystem + transfers/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"transferspersecond\",\"counterSpecifier\":\"/builtin/filesystem/transferspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreespace\",\"counterSpecifier\":\"/builtin/filesystem/percentfreespace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedspace\",\"counterSpecifier\":\"/builtin/filesystem/percentusedspace\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + used space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"usedspace\",\"counterSpecifier\":\"/builtin/filesystem/usedspace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + read bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytesreadpersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytesreadpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + free space\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"freespace\",\"counterSpecifier\":\"/builtin/filesystem/freespace\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Filesystem + % free inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentfreeinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentfreeinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Filesystem + bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"bytespersecond\",\"counterSpecifier\":\"/builtin/filesystem/bytespersecond\",\"type\":\"builtin\",\"unit\":\"BytesPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + reads/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"readspersecond\",\"counterSpecifier\":\"/builtin/filesystem/readspersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + write bytes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"byteswrittenpersecond\",\"counterSpecifier\":\"/builtin/filesystem/byteswrittenpersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + writes/sec\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"writespersecond\",\"counterSpecifier\":\"/builtin/filesystem/writespersecond\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Filesystem + % used inodes\",\"locale\":\"en-us\"}],\"class\":\"filesystem\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusedinodes\",\"counterSpecifier\":\"/builtin/filesystem/percentusedinodes\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + IO wait time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentiowaittime\",\"counterSpecifier\":\"/builtin/processor/percentiowaittime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + user time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentusertime\",\"counterSpecifier\":\"/builtin/processor/percentusertime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + nice time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentnicetime\",\"counterSpecifier\":\"/builtin/processor/percentnicetime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + percentage guest OS\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprocessortime\",\"counterSpecifier\":\"/builtin/processor/percentprocessortime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + interrupt time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentinterrupttime\",\"counterSpecifier\":\"/builtin/processor/percentinterrupttime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + idle time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentidletime\",\"counterSpecifier\":\"/builtin/processor/percentidletime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"CPU + privileged time\",\"locale\":\"en-us\"}],\"class\":\"processor\",\"condition\":\"IsAggregate=TRUE\",\"counter\":\"percentprivilegedtime\",\"counterSpecifier\":\"/builtin/processor/percentprivilegedtime\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availablememory\",\"counterSpecifier\":\"/builtin/memory/availablememory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedswap\",\"counterSpecifier\":\"/builtin/memory/percentusedswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Memory + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedmemory\",\"counterSpecifier\":\"/builtin/memory/usedmemory\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Page + reads\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagesreadpersec\",\"counterSpecifier\":\"/builtin/memory/pagesreadpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"availableswap\",\"counterSpecifier\":\"/builtin/memory/availableswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Swap + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailableswap\",\"counterSpecifier\":\"/builtin/memory/percentavailableswap\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Mem. + percent available\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentavailablememory\",\"counterSpecifier\":\"/builtin/memory/percentavailablememory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Pages\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pagespersec\",\"counterSpecifier\":\"/builtin/memory/pagespersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"},{\"annotation\":[{\"displayName\":\"Swap + used\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"usedswap\",\"counterSpecifier\":\"/builtin/memory/usedswap\",\"type\":\"builtin\",\"unit\":\"Bytes\"},{\"annotation\":[{\"displayName\":\"Memory + percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page + writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n + \ }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '14233' + - '14231' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:46 GMT + - Mon, 16 Feb 2026 01:01:40 GMT etag: - '"2"' expires: @@ -8455,12 +7932,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;23970,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 419B91371E31431882C718CEE19F8D70 Ref B: TYO201151005011 Ref C: 2024-08-26T08:17:46Z' + - 'Ref A: DE995CEDE9EB439DBEDF9EE532CEF7D4 Ref B: SG2AA1070302054 Ref C: 2026-02-16T01:01:40Z' status: code: 200 message: '' From 4c8e23fcfc0171b0fe1b1e23b1addaa5ae7e78f9 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 24 Feb 2026 12:49:09 +0800 Subject: [PATCH 5/6] Update code --- .../azure/cli/command_modules/vm/custom.py | 8 +- .../cli/command_modules/vm/operations/vm.py | 242 ------------------ 2 files changed, 3 insertions(+), 247 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 7822fd0e04c..de5c63c420b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2294,16 +2294,14 @@ def get_boot_log(cmd, resource_group_name, vm_name): def set_diagnostics_extension(cmd, resource_group_name, vm_name, settings, protected_settings=None, version=None, no_auto_upgrade=False): from .aaz.latest.vm.extension import Delete as VmExtensionDelete - from .operations.vm import convert_show_result_to_snake_case vm = get_instance_view(cmd, resource_group_name, vm_name) - vm = convert_show_result_to_snake_case(vm) - is_linux_os = _is_linux_os_by_aaz(vm) + is_linux_os = _is_linux_os_aaz(vm) vm_extension_name = _LINUX_DIAG_EXT if is_linux_os else _WINDOWS_DIAG_EXT if is_linux_os: # check incompatible version - exts = vm.get('instance_view', {}).get('extensions', []) + exts = vm.get('instanceView', {}).get('extensions', []) major_ver = extension_mappings[_LINUX_DIAG_EXT]['version'].split('.', maxsplit=1)[0] if next((e for e in exts if e.get('name') == vm_extension_name and - not e.get('type_handler_version', '').startswith(major_ver + '.')), None): + not e.get('typeHandlerVersion', '').startswith(major_ver + '.')), None): logger.warning('There is an incompatible version of diagnostics extension installed. ' 'We will update it with a new version') poller = VmExtensionDelete(cli_ctx=cmd.cli_ctx)(command_args={ 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 61cbc98aac6..09f7244a3b8 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 @@ -322,8 +322,6 @@ def convert_show_result_to_snake_case(result): new_result["host"] = result["host"] if "hostGroup" in result: new_result["host_group"] = result["hostGroup"] - if "instanceView" in result: - new_result["instance_view"] = result["instanceView"] if "licenseType" in result: new_result["license_type"] = result["licenseType"] if "networkProfile" in result: @@ -416,246 +414,6 @@ def convert_show_result_to_snake_case(result): vm_size_properties["v_cp_us_per_core"] = vm_size_properties["vCPUsPerCore"] vm_size_properties.pop("vCPUsPerCore") - instance_view_properties = new_result.get("instance_view", {}) or {} - if "assignedHost" in instance_view_properties: - instance_view_properties['assigned_host'] = instance_view_properties['assignedHost'] - instance_view_properties.pop("assignedHost") - if "bootDiagnostics" in instance_view_properties: - instance_view_properties['boot_diagnostics'] = instance_view_properties['bootDiagnostics'] - instance_view_properties.pop("bootDiagnostics") - if "computerName" in instance_view_properties: - instance_view_properties['computer_name'] = instance_view_properties['computerName'] - instance_view_properties.pop("computerName") - - disks_properties = instance_view_properties.get("disks", []) or [] - for disks_property in disks_properties: - if "encryptionSettings" in disks_property: - disks_property['encryption_settings'] = disks_property['encryptionSettings'] - disks_property.pop("encryptionSettings") - - es_properties = disks_property.get("encryption_settings", []) or [] - for es_property in es_properties: - if "diskEncryptionKey" in es_property: - es_property['disk_encryption_key'] = es_property['diskEncryptionKey'] - es_property.pop("diskEncryptionKey") - - dek_properties = es_property.get("disk_encryption_key", {}) or {} - if "secretUrl" in dek_properties: - dek_properties['secret_url'] = dek_properties['secretUrl'] - dek_properties.pop("secretUrl") - if "sourceVault" in dek_properties: - dek_properties['source_vault'] = dek_properties['sourceVault'] - dek_properties.pop("sourceVault") - - if "keyEncryptionKey" in es_property: - es_property['key_encryption_key'] = es_property['keyEncryptionKey'] - es_property.pop("keyEncryptionKey") - - kek_properties = es_property.get("key_encryption_key", {}) or {} - if "keyUrl" in kek_properties: - kek_properties['key_url'] = kek_properties['keyUrl'] - kek_properties.pop("keyUrl") - if "sourceVault" in kek_properties: - kek_properties['source_vault'] = kek_properties['sourceVault'] - kek_properties.pop("sourceVault") - - statuses_properties = disks_property.get("statuses", []) or [] - for statuses_property in statuses_properties: - if "displayStatus" in statuses_property: - statuses_property['display_status'] = statuses_property['displayStatus'] - statuses_property.pop("displayStatus") - - extensions_properties = instance_view_properties.get("extensions", []) or [] - for extensions_property in extensions_properties: - if "typeHandlerVersion" in extensions_property: - extensions_property['type_handler_version'] = extensions_property['typeHandlerVersion'] - extensions_property.pop("typeHandlerVersion") - - statuses_properties = extensions_property.get("statuses", []) or [] - for statuses_property in statuses_properties: - if "displayStatus" in statuses_property: - statuses_property['display_status'] = statuses_property['displayStatus'] - statuses_property.pop("displayStatus") - - substatuses_properties = extensions_property.get("substatuses", []) or [] - for substatuses_property in substatuses_properties: - if "displayStatus" in substatuses_property: - substatuses_property['display_status'] = substatuses_property['displayStatus'] - substatuses_property.pop("displayStatus") - - if "hyperVGeneration" in instance_view_properties: - instance_view_properties['hyper_v_generation'] = instance_view_properties['hyperVGeneration'] - instance_view_properties.pop("hyperVGeneration") - if "isVMInStandbyPool" in instance_view_properties: - instance_view_properties['is_vm_in_standby_pool'] = instance_view_properties['isVMInStandbyPool'] - instance_view_properties.pop("isVMInStandbyPool") - if "maintenanceRedeployStatus" in instance_view_properties: - instance_view_properties['maintenance_redeploy_status'] = instance_view_properties['maintenanceRedeployStatus'] - instance_view_properties.pop("maintenanceRedeployStatus") - if "osName" in instance_view_properties: - instance_view_properties['os_name'] = instance_view_properties['osName'] - instance_view_properties.pop("osName") - if "osVersion" in instance_view_properties: - instance_view_properties['os_version'] = instance_view_properties['osVersion'] - instance_view_properties.pop("osVersion") - if "patchStatus" in instance_view_properties: - instance_view_properties['patch_status'] = instance_view_properties['patchStatus'] - instance_view_properties.pop("patchStatus") - if "platformFaultDomain" in instance_view_properties: - instance_view_properties['platform_fault_domain'] = instance_view_properties['platformFaultDomain'] - instance_view_properties.pop("platformFaultDomain") - if "platformUpdateDomain" in instance_view_properties: - instance_view_properties['platform_update_domain'] = instance_view_properties['platformUpdateDomain'] - instance_view_properties.pop("platformUpdateDomain") - if "rdpThumbPrint" in instance_view_properties: - instance_view_properties['rdp_thumb_print'] = instance_view_properties['rdpThumbPrint'] - instance_view_properties.pop("rdpThumbPrint") - - statuses_properties = instance_view_properties.get("statuses", []) or [] - for statuses_property in statuses_properties: - if "displayStatus" in statuses_property: - statuses_property['display_status'] = statuses_property['displayStatus'] - statuses_property.pop("displayStatus") - - if "vmAgent" in instance_view_properties: - instance_view_properties['vm_agent'] = instance_view_properties['vmAgent'] - instance_view_properties.pop("vmAgent") - if "vmHealth" in instance_view_properties: - instance_view_properties['vm_health'] = instance_view_properties['vmHealth'] - instance_view_properties.pop("vmHealth") - - bd_properties = instance_view_properties.get("boot_diagnostics", {}) or {} - if "consoleScreenshotBlobUri" in bd_properties: - bd_properties['console_screenshot_blob_uri'] = bd_properties['consoleScreenshotBlobUri'] - bd_properties.pop("consoleScreenshotBlobUri") - if "serialConsoleLogBlobUri" in bd_properties: - bd_properties['serial_console_log_blob_uri'] = bd_properties['serialConsoleLogBlobUri'] - bd_properties.pop("serialConsoleLogBlobUri") - status_properties = bd_properties.get("status", {}) or {} - if "displayStatus" in status_properties: - status_properties['display_status'] = status_properties['displayStatus'] - status_properties.pop("displayStatus") - - mrs_properties = instance_view_properties.get("maintenance_redeploy_status", {}) or {} - if "isCustomerInitiatedMaintenanceAllowed" in mrs_properties: - mrs_properties['is_customer_initiated_maintenance_allowed'] = mrs_properties['isCustomerInitiatedMaintenanceAllowed'] - mrs_properties.pop("isCustomerInitiatedMaintenanceAllowed") - if "lastOperationMessage" in mrs_properties: - mrs_properties['last_operation_message'] = mrs_properties['lastOperationMessage'] - mrs_properties.pop("lastOperationMessage") - if "lastOperationResultCode" in mrs_properties: - mrs_properties['last_operation_result_code'] = mrs_properties['lastOperationResultCode'] - mrs_properties.pop("lastOperationResultCode") - if "maintenanceWindowEndTime" in mrs_properties: - mrs_properties['maintenance_window_end_time'] = mrs_properties['maintenanceWindowEndTime'] - mrs_properties.pop("maintenanceWindowEndTime") - if "maintenanceWindowStartTime" in mrs_properties: - mrs_properties['maintenance_window_start_time'] = mrs_properties['maintenanceWindowStartTime'] - mrs_properties.pop("maintenanceWindowStartTime") - if "preMaintenanceWindowEndTime" in mrs_properties: - mrs_properties['pre_maintenance_window_end_time'] = mrs_properties['preMaintenanceWindowEndTime'] - mrs_properties.pop("preMaintenanceWindowEndTime") - if "preMaintenanceWindowStartTime" in mrs_properties: - mrs_properties['pre_maintenance_window_start_time'] = mrs_properties['preMaintenanceWindowStartTime'] - mrs_properties.pop("preMaintenanceWindowStartTime") - - ps_properties = instance_view_properties.get("patch_status", {}) or {} - if "availablePatchSummary" in ps_properties: - ps_properties['available_patch_summary'] = ps_properties['availablePatchSummary'] - ps_properties.pop("availablePatchSummary") - if "configurationStatuses" in ps_properties: - ps_properties['configuration_statuses'] = ps_properties['configurationStatuses'] - ps_properties.pop("configurationStatuses") - if "lastPatchInstallationSummary" in ps_properties: - ps_properties['last_patch_installation_summary'] = ps_properties['lastPatchInstallationSummary'] - ps_properties.pop("lastPatchInstallationSummary") - - va_properties = instance_view_properties.get("vm_agent", {}) or {} - if "extensionHandlers" in va_properties: - va_properties['extension_handlers'] = va_properties['extensionHandlers'] - va_properties.pop("extensionHandlers") - if "vmAgentVersion" in va_properties: - va_properties['vm_agent_version'] = va_properties['vmAgentVersion'] - va_properties.pop("vmAgentVersion") - - vh_properties = instance_view_properties.get("vm_health", {}) or {} - status_properties = vh_properties.get("status", {}) or {} - if "displayStatus" in status_properties: - status_properties['display_status'] = status_properties['displayStatus'] - status_properties.pop("displayStatus") - - aps_properties = ps_properties.get("available_patch_summary", {}) or {} - if "assessmentActivityId" in aps_properties: - aps_properties['assessment_activity_id'] = aps_properties['assessmentActivityId'] - aps_properties.pop("assessmentActivityId") - if "criticalAndSecurityPatchCount" in aps_properties: - aps_properties['critical_and_security_patch_count'] = aps_properties['criticalAndSecurityPatchCount'] - aps_properties.pop("criticalAndSecurityPatchCount") - if "lastModifiedTime" in aps_properties: - aps_properties['last_modified_time'] = aps_properties['lastModifiedTime'] - aps_properties.pop("lastModifiedTime") - if "otherPatchCount" in aps_properties: - aps_properties['other_patch_count'] = aps_properties['otherPatchCount'] - aps_properties.pop("otherPatchCount") - if "rebootPending" in aps_properties: - aps_properties['reboot_pending'] = aps_properties['rebootPending'] - aps_properties.pop("rebootPending") - if "startTime" in aps_properties: - aps_properties['start_time'] = aps_properties['startTime'] - aps_properties.pop("startTime") - - cs_properties = ps_properties.get("configuration_statuses", []) or [] - for cs_property in cs_properties: - if "displayStatus" in cs_property: - cs_property['display_status'] = cs_property['displayStatus'] - cs_property.pop("displayStatus") - - lpis_properties = ps_properties.get("last_patch_installation_summary", {}) or {} - if "excludedPatchCount" in lpis_properties: - lpis_properties['excluded_patch_count'] = lpis_properties['excludedPatchCount'] - lpis_properties.pop("excludedPatchCount") - if "failedPatchCount" in lpis_properties: - lpis_properties['failed_patch_count'] = lpis_properties['failedPatchCount'] - lpis_properties.pop("failedPatchCount") - if "installationActivityId" in lpis_properties: - lpis_properties['installation_activity_id'] = lpis_properties['installationActivityId'] - lpis_properties.pop("installationActivityId") - if "installedPatchCount" in lpis_properties: - lpis_properties['installed_patch_count'] = lpis_properties['installedPatchCount'] - lpis_properties.pop("installedPatchCount") - if "lastModifiedTime" in lpis_properties: - lpis_properties['last_modified_time'] = lpis_properties['lastModifiedTime'] - lpis_properties.pop("lastModifiedTime") - if "maintenanceWindowExceeded" in lpis_properties: - lpis_properties['maintenance_window_exceeded'] = lpis_properties['maintenanceWindowExceeded'] - lpis_properties.pop("maintenanceWindowExceeded") - if "notSelectedPatchCount" in lpis_properties: - lpis_properties['not_selected_patch_count'] = lpis_properties['notSelectedPatchCount'] - lpis_properties.pop("notSelectedPatchCount") - if "pendingPatchCount" in lpis_properties: - lpis_properties['pending_patch_count'] = lpis_properties['pendingPatchCount'] - lpis_properties.pop("pendingPatchCount") - if "startTime" in lpis_properties: - lpis_properties['start_time'] = lpis_properties['startTime'] - lpis_properties.pop("startTime") - - eh_properties = va_properties.get("extension_handlers", []) or [] - for eh_property in eh_properties: - status_properties = eh_property.get("status", {}) or {} - if "displayStatus" in status_properties: - status_properties['display_status'] = status_properties['displayStatus'] - status_properties.pop("displayStatus") - - if "typeHandlerVersion" in eh_property: - eh_property['type_handler_version'] = eh_property['typeHandlerVersion'] - eh_property.pop("typeHandlerVersion") - - statuses_properties = va_properties.get("statuses", []) or [] - for statuses_property in statuses_properties: - if "displayStatus" in statuses_property: - statuses_property['display_status'] = statuses_property['displayStatus'] - statuses_property.pop("displayStatus") - network_profile = new_result.get("network_profile", {}) or {} if "networkApiVersion" in network_profile: network_profile["network_api_version"] = network_profile["networkApiVersion"] From 6bf50ea4b30d087e39bbb2f4bdc30627a0402c56 Mon Sep 17 00:00:00 2001 From: william051200 Date: Tue, 24 Feb 2026 12:49:15 +0800 Subject: [PATCH 6/6] Record test case --- .../test_diagnostics_extension_install.yaml | 892 ++++++++++-------- 1 file changed, 520 insertions(+), 372 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml index 54185b20524..ef5b2171cd2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_diagnostics_extension_install.yaml @@ -19,7 +19,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-16T00:54:11Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-24T04:39:50Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:53 GMT + - Tue, 24 Feb 2026 04:40:17 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8DDFE3E81A254682B448A3D12BB4F3AC Ref B: SG2AA1040516029 Ref C: 2026-02-16T00:54:52Z' + - 'Ref A: 05D7042CAD204B52B75A1FC9F4CF45F8 Ref B: SG2AA1040513034 Ref C: 2026-02-24T04:40:16Z' status: code: 200 message: OK @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:55 GMT + - Tue, 24 Feb 2026 04:40:17 GMT expires: - '-1' pragma: @@ -92,13 +92,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/ee1b4de0-354a-46ab-93f0-f0b1577f84ab + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e8d7ab6e-2246-4516-9d97-54a9968af4b2 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DC161244F32C4D118F3D7309D49C2E31 Ref B: SG2AA1070302036 Ref C: 2026-02-16T00:54:53Z' + - 'Ref A: 49F4E984DD5E4386A1B54567827579D2 Ref B: SG2AA1040517034 Ref C: 2026-02-24T04:40:17Z' status: code: 200 message: OK @@ -144,7 +144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:55 GMT + - Tue, 24 Feb 2026 04:40:19 GMT expires: - '-1' pragma: @@ -156,13 +156,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/58426168-59e7-4df8-b730-85716d7a9121 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/a7b5b97d-20a1-4a4f-9ac4-9110660a594c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73985 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 46602B4A14A64C83B68D65C1982F093F Ref B: SG2AA1040519054 Ref C: 2026-02-16T00:54:55Z' + - 'Ref A: 3453469DA7FE4567A46D9D98462E2734 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:40:17Z' status: code: 200 message: OK @@ -195,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:57 GMT + - Tue, 24 Feb 2026 04:40:19 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2931A5F805674288BD6A979D4CA913BA Ref B: SG2AA1040518036 Ref C: 2026-02-16T00:54:56Z' + - 'Ref A: 922EE6AB0DD346B0B76380798212B522 Ref B: SG2AA1040518054 Ref C: 2026-02-24T04:40:19Z' status: code: 200 message: OK @@ -247,7 +247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:58 GMT + - Tue, 24 Feb 2026 04:40:20 GMT expires: - '-1' pragma: @@ -259,13 +259,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/a5343413-34ba-4b17-96b8-0ce45277e0de + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/d0827a9f-de78-454a-80fc-49a811acda1c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 603DB0F288E34BABA126FE85E4AF2F4D Ref B: SG2AA1040520060 Ref C: 2026-02-16T00:54:57Z' + - 'Ref A: 93984F7B2A434E1AA1D50E2AA37D4491 Ref B: SG2AA1070306040 Ref C: 2026-02-24T04:40:20Z' status: code: 200 message: OK @@ -311,7 +311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:59 GMT + - Tue, 24 Feb 2026 04:40:22 GMT expires: - '-1' pragma: @@ -323,13 +323,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/9d151f4b-d02f-4f70-ae1f-d02bada6e6c7 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/501341b2-560a-466d-875b-a15da5b50167 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73984 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C33418E45F624E69A5BACA6594E5EFD0 Ref B: SG2AA1040515034 Ref C: 2026-02-16T00:54:59Z' + - 'Ref A: 40A5487A4F0045C7BCEEAB6AFED773F8 Ref B: SG2AA1070303054 Ref C: 2026-02-24T04:40:21Z' status: code: 200 message: OK @@ -367,7 +367,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:54:59 GMT + - Tue, 24 Feb 2026 04:40:23 GMT expires: - '-1' pragma: @@ -379,13 +379,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/93f0b8e5-7886-40db-92c1-515d9975a926 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/c113c323-286f-46d9-ad04-c3ed5b43c71a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AB878DF3C30242CE859D10CADA1D3E5C Ref B: SG2AA1070303062 Ref C: 2026-02-16T00:55:00Z' + - 'Ref A: 5A36C538180B4A8F908ABC7D07AFC5B1 Ref B: SG2AA1040513034 Ref C: 2026-02-24T04:40:22Z' status: code: 200 message: OK @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:55:01 GMT + - Tue, 24 Feb 2026 04:40:23 GMT expires: - '-1' pragma: @@ -443,13 +443,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/48686bcd-1af7-44a0-b27a-bd921ff2389d + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/44902b9a-27d5-43ba-be3b-6680da41b375 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73983 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FFA1A38C99084FC39DBC1929C3AFA1A7 Ref B: SG2AA1040519031 Ref C: 2026-02-16T00:55:00Z' + - 'Ref A: 396D8DD62E5147BFB19314E5B76D748F Ref B: SG2AA1070306036 Ref C: 2026-02-24T04:40:23Z' status: code: 200 message: OK @@ -495,9 +495,9 @@ interactions: {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}}, - "osProfile": {"computerNamePrefix": "testd7aeb", "adminUsername": "user11", + "osProfile": {"computerNamePrefix": "testd3e06", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "testd7aebNic", "properties": {"ipConfigurations": [{"name": "testd7aebIPConfig", + [{"name": "testd3e06Nic", "properties": {"ipConfigurations": [{"name": "testd3e06IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'', @@ -528,18 +528,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","name":"vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13197434418560707682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-16T00:55:10.0846274Z","duration":"PT0.0006844S","correlationId":"af4ed699-8ec5-4ee0-a232-f7ea765e0589","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_qTFWGfy35xzVn6qNUjhalvG503RLgg9k","name":"vmss_deploy_qTFWGfy35xzVn6qNUjhalvG503RLgg9k","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8346160075588263526","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-24T04:40:33.0082063Z","duration":"PT0.0003976S","correlationId":"e50df25e-6f60-4a4d-9f0a-2971f9ba5a0f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_qTFWGfy35xzVn6qNUjhalvG503RLgg9k/operationStatuses/08584296988524639420?api-version=2024-11-01&t=639075048344301044&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=r_wvE9H4554igiZGPWeszSyM8HW6nkKM03urKS5oYT328nFgMzYpDKNEcat0-LJhQGo_WutGuSQfAPRXmBWiHcau4-gLHzGD4gze0Oywmf2XVh8OU8S0-nkG8FJaFpgh89Nc6OkwIFIozYD6h4CxDSd86zR71kYH2Nv6G2SLoS3CvHnaFvfuLIm1yIBidwGAL7TwsKCGEYD4iVGKPacsa8Pwvfujx-Jw_WEWk2iD2xNchBjqpvVo1lejftuJ204pi0ImR_HrJHdrht4x13iDtdA8YWcc1hkNPP2GifUPGyIyWgKDejUB1QQ-sTgPp_64DQO3eTFIVwYpRoemx2cDEw&h=esyA74A9Cn4sNgXpeXKsvoyN4IXN5WvZ4g5AtcCxQGo cache-control: - no-cache content-length: - - '3592' + - '3591' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:55:11 GMT + - Tue, 24 Feb 2026 04:40:33 GMT expires: - '-1' pragma: @@ -557,7 +557,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: A3D2CA8ECC944B339F2C13B1FA6D3421 Ref B: SG2AA1040515060 Ref C: 2026-02-16T00:55:01Z' + - 'Ref A: 01DB469C4F61462A891B9216E912D3E2 Ref B: SG2AA1070305052 Ref C: 2026-02-24T04:40:23Z' status: code: 201 message: Created @@ -578,19 +578,19 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296988524639420?api-version=2024-11-01&t=639075048344301044&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=r_wvE9H4554igiZGPWeszSyM8HW6nkKM03urKS5oYT328nFgMzYpDKNEcat0-LJhQGo_WutGuSQfAPRXmBWiHcau4-gLHzGD4gze0Oywmf2XVh8OU8S0-nkG8FJaFpgh89Nc6OkwIFIozYD6h4CxDSd86zR71kYH2Nv6G2SLoS3CvHnaFvfuLIm1yIBidwGAL7TwsKCGEYD4iVGKPacsa8Pwvfujx-Jw_WEWk2iD2xNchBjqpvVo1lejftuJ204pi0ImR_HrJHdrht4x13iDtdA8YWcc1hkNPP2GifUPGyIyWgKDejUB1QQ-sTgPp_64DQO3eTFIVwYpRoemx2cDEw&h=esyA74A9Cn4sNgXpeXKsvoyN4IXN5WvZ4g5AtcCxQGo response: body: - string: '{"status":"Accepted"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '21' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:55:11 GMT + - Tue, 24 Feb 2026 04:40:35 GMT expires: - '-1' pragma: @@ -604,7 +604,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: BBF1D0F704284FD0ADFE68AF573B0299 Ref B: SG2AA1040517054 Ref C: 2026-02-16T00:55:12Z' + - 'Ref A: 257FE839AAAE42D6AFBB84135A6FE935 Ref B: SG2AA1070303054 Ref C: 2026-02-24T04:40:34Z' status: code: 200 message: OK @@ -625,7 +625,7 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296988524639420?api-version=2024-11-01&t=639075048344301044&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=r_wvE9H4554igiZGPWeszSyM8HW6nkKM03urKS5oYT328nFgMzYpDKNEcat0-LJhQGo_WutGuSQfAPRXmBWiHcau4-gLHzGD4gze0Oywmf2XVh8OU8S0-nkG8FJaFpgh89Nc6OkwIFIozYD6h4CxDSd86zR71kYH2Nv6G2SLoS3CvHnaFvfuLIm1yIBidwGAL7TwsKCGEYD4iVGKPacsa8Pwvfujx-Jw_WEWk2iD2xNchBjqpvVo1lejftuJ204pi0ImR_HrJHdrht4x13iDtdA8YWcc1hkNPP2GifUPGyIyWgKDejUB1QQ-sTgPp_64DQO3eTFIVwYpRoemx2cDEw&h=esyA74A9Cn4sNgXpeXKsvoyN4IXN5WvZ4g5AtcCxQGo response: body: string: '{"status":"Running"}' @@ -637,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:55:42 GMT + - Tue, 24 Feb 2026 04:41:05 GMT expires: - '-1' pragma: @@ -651,7 +651,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DBDC48AB75824D2AA809DE989D8FC6A3 Ref B: SG2AA1040518042 Ref C: 2026-02-16T00:55:42Z' + - 'Ref A: 071B0FDF8F3446B9AB88D34EA7BDF4BA Ref B: SG2AA1070306023 Ref C: 2026-02-24T04:41:05Z' status: code: 200 message: OK @@ -672,7 +672,54 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304035753852517?api-version=2024-11-01&t=639068001116627762&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=m96105qERj-_2nflaCoN4wAlnXx9GBeJD27burLOr-AX497FqgP_CG_FqVzazoXKBNKdYfiEqpa4M_FTrUMl4WjVEaKTWungTAcEdGptQnf_mb-7iQyr16Ebzi5MW8S2OpVA7UKq7n7N9y1kAmlLohtZ9bBrK6gcFkV4uwWzEBkVlyVrQZRVLw2oKas086ZdQKRt2L937tdl_F6S1uHxo4VBuH-8ziY82RwDm5nc-LUTcr2Vs_NCvcrviyPYYM6R6EzS1gAq-qRc6ce8_2AEoJzQ-R4dzWFtRpyi-7Qi3lhU6hvbhLsLZwb-Y2DOd_k6EuTvwI4qwUfQYAdtZcOAIw&h=GzIepYsu71M6lMFJ3itbCk6OHziBOlcVMXZWgNaz8Yg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296988524639420?api-version=2024-11-01&t=639075048344301044&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=r_wvE9H4554igiZGPWeszSyM8HW6nkKM03urKS5oYT328nFgMzYpDKNEcat0-LJhQGo_WutGuSQfAPRXmBWiHcau4-gLHzGD4gze0Oywmf2XVh8OU8S0-nkG8FJaFpgh89Nc6OkwIFIozYD6h4CxDSd86zR71kYH2Nv6G2SLoS3CvHnaFvfuLIm1yIBidwGAL7TwsKCGEYD4iVGKPacsa8Pwvfujx-Jw_WEWk2iD2xNchBjqpvVo1lejftuJ204pi0ImR_HrJHdrht4x13iDtdA8YWcc1hkNPP2GifUPGyIyWgKDejUB1QQ-sTgPp_64DQO3eTFIVwYpRoemx2cDEw&h=esyA74A9Cn4sNgXpeXKsvoyN4IXN5WvZ4g5AtcCxQGo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Feb 2026 04:41:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 23F2F833A1D8465BB7A77F255290C971 Ref B: SG2AA1040520023 Ref C: 2026-02-24T04:41:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --authentication-type --lb-sku --admin-username --admin-password + --orchestration-mode --vm-sku + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296988524639420?api-version=2024-11-01&t=639075048344301044&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=r_wvE9H4554igiZGPWeszSyM8HW6nkKM03urKS5oYT328nFgMzYpDKNEcat0-LJhQGo_WutGuSQfAPRXmBWiHcau4-gLHzGD4gze0Oywmf2XVh8OU8S0-nkG8FJaFpgh89Nc6OkwIFIozYD6h4CxDSd86zR71kYH2Nv6G2SLoS3CvHnaFvfuLIm1yIBidwGAL7TwsKCGEYD4iVGKPacsa8Pwvfujx-Jw_WEWk2iD2xNchBjqpvVo1lejftuJ204pi0ImR_HrJHdrht4x13iDtdA8YWcc1hkNPP2GifUPGyIyWgKDejUB1QQ-sTgPp_64DQO3eTFIVwYpRoemx2cDEw&h=esyA74A9Cn4sNgXpeXKsvoyN4IXN5WvZ4g5AtcCxQGo response: body: string: '{"status":"Succeeded"}' @@ -684,7 +731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:13 GMT + - Tue, 24 Feb 2026 04:42:08 GMT expires: - '-1' pragma: @@ -698,7 +745,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 63E2601B3D6F4A09A4BF9FBD9898FF18 Ref B: SG2AA1070305062 Ref C: 2026-02-16T00:56:13Z' + - 'Ref A: 949DD6049C6D4F9F903752FF773C7761 Ref B: SG2AA1070301031 Ref C: 2026-02-24T04:42:08Z' status: code: 200 message: OK @@ -722,16 +769,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","name":"vmss_deploy_uGI04EVQjdb6e2CWxTt4boREjNjn5tia","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13197434418560707682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-16T00:56:00.8977191Z","duration":"PT50.8130917S","correlationId":"af4ed699-8ec5-4ee0-a232-f7ea765e0589","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testd7aeb","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testd7aebNic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testd7aebIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2026-02-16T00:55:22.2606282+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e3707019-fbbc-49f0-96e7-e9cececb58d5","platformFaultDomainCount":5,"timeCreated":"2026-02-16T00:55:22.2606282+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_qTFWGfy35xzVn6qNUjhalvG503RLgg9k","name":"vmss_deploy_qTFWGfy35xzVn6qNUjhalvG503RLgg9k","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8346160075588263526","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-24T04:41:47.3204134Z","duration":"PT1M14.3122071S","correlationId":"e50df25e-6f60-4a4d-9f0a-2971f9ba5a0f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"testdiagvmssLB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"testdiagvmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmssNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"testdiagvmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"testd3e06","adminUsername":"user11","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":"Canonical","offer":"UbuntuServer","sku":"16.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"testd3e06Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"testd3e06IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}]}}]},"timeCreated":"2026-02-24T04:40:54.5601748+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"3f2bc8a9-0109-45e6-879e-145682fe643a","platformFaultDomainCount":5,"timeCreated":"2026-02-24T04:40:54.5601748+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/testdiagvmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET"}]}}' headers: cache-control: - no-cache content-length: - - '6666' + - '6667' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:13 GMT + - Tue, 24 Feb 2026 04:42:08 GMT expires: - '-1' pragma: @@ -745,7 +792,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C76410FE8E8B45B39AC30EDAB7DD1F14 Ref B: SG2AA1040513034 Ref C: 2026-02-16T00:56:13Z' + - 'Ref A: BBFE5F34884546F7A6EEF04EDC95DD02 Ref B: SG2AA1040518054 Ref C: 2026-02-24T04:42:08Z' status: code: 200 message: OK @@ -769,7 +816,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-16T00:54:11Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001","name":"cli_test_vm_vmss_diagnostics_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_diagnostics_extension_install","date":"2026-02-24T04:39:50Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -778,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:14 GMT + - Tue, 24 Feb 2026 04:42:09 GMT expires: - '-1' pragma: @@ -792,7 +839,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 67201FDF93554DE5A695E9DF40F84741 Ref B: SG2AA1070302054 Ref C: 2026-02-16T00:56:15Z' + - 'Ref A: 6B4EA920691846B29882AE5E627060FD Ref B: SG2AA1070301052 Ref C: 2026-02-24T04:42:09Z' status: code: 200 message: OK @@ -830,7 +877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:16 GMT + - Tue, 24 Feb 2026 04:42:10 GMT expires: - '-1' pragma: @@ -842,13 +889,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0ab36ea5-56b8-419d-94c1-4e0cfa626d57 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0adfdb6b-bc8c-46db-9e9c-5909430e8b30 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3CC722032B0A4A9AA20F5D363E2CA4EF Ref B: SG2AA1070304036 Ref C: 2026-02-16T00:56:15Z' + - 'Ref A: 9803A23668BA4CCB8D429277DB40CFD4 Ref B: SG2AA1040516031 Ref C: 2026-02-24T04:42:09Z' status: code: 200 message: OK @@ -894,7 +941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:17 GMT + - Tue, 24 Feb 2026 04:42:11 GMT expires: - '-1' pragma: @@ -906,13 +953,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/06096727-8ab3-4d8c-950e-41225d96a947 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/da074687-6476-4b35-896d-5549c7a8ba8a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995 + - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73981 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 196015AC3E0D4116B1526BFB8B8EC073 Ref B: SG2AA1070305062 Ref C: 2026-02-16T00:56:16Z' + - 'Ref A: B129EB879D6F4994B8B8A90A54990135 Ref B: SG2AA1070303060 Ref C: 2026-02-24T04:42:10Z' status: code: 200 message: OK @@ -936,7 +983,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts?api-version=2025-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-02-16T00:54:26.8436114Z","key2":"2026-02-16T00:54:26.8436114Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-16T00:54:26.8591942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-16T00:54:26.8591942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2026-02-16T00:54:26.6248029Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-02-24T04:39:53.8578593Z","key2":"2026-02-24T04:39:53.8578593Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-24T04:39:53.8734858Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-02-24T04:39:53.8734858Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2026-02-24T04:39:53.6234837Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache @@ -945,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:18 GMT + - Tue, 24 Feb 2026 04:42:11 GMT expires: - '-1' pragma: @@ -957,11 +1004,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 20155720-35b4-45d7-8845-9af402e630c3 + - 27ef98e0-e81a-475a-af13-30f8ba07036a x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5585600880A44E338ED6A0368AAF5517 Ref B: SG2AA1070304023 Ref C: 2026-02-16T00:56:18Z' + - 'Ref A: EB0293A1F04E40418AD0046111E5CAC9 Ref B: SG2AA1040518029 Ref C: 2026-02-24T04:42:12Z' status: code: 200 message: OK @@ -2553,7 +2600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:20 GMT + - Tue, 24 Feb 2026 04:42:12 GMT expires: - '-1' pragma: @@ -2567,7 +2614,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 1242402DFCCF4FA482A802F8E601EB3E Ref B: SG2AA1070304054 Ref C: 2026-02-16T00:56:18Z' + - 'Ref A: 5F1729257F4A48518E732B24F8EF7D70 Ref B: SG2AA1040518029 Ref C: 2026-02-24T04:42:12Z' status: code: 200 message: OK @@ -2602,7 +2649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:20 GMT + - Tue, 24 Feb 2026 04:42:13 GMT expires: - '-1' pragma: @@ -2616,7 +2663,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 2DCCD127FA3145D08C440747F271274B Ref B: SG2AA1040512025 Ref C: 2026-02-16T00:56:20Z' + - 'Ref A: 28017A2DC213453F9F6DC354D2E25EAB Ref B: SG2AA1040513023 Ref C: 2026-02-24T04:42:14Z' status: code: 404 message: Not Found @@ -2654,7 +2701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:22 GMT + - Tue, 24 Feb 2026 04:42:14 GMT expires: - '-1' pragma: @@ -2666,13 +2713,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/710ad227-6492-4bcb-920c-d667066b125a + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/eacb0a9e-9862-438f-8d15-c3f0daba527e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A5FDEFB50DE64B62945050D1460E157E Ref B: SG2AA1040517036 Ref C: 2026-02-16T00:56:21Z' + - 'Ref A: 8EB3E1D16E524AB595532353D43DD13A Ref B: SG2AA1070302062 Ref C: 2026-02-24T04:42:14Z' status: code: 200 message: OK @@ -2718,7 +2765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:22 GMT + - Tue, 24 Feb 2026 04:42:15 GMT expires: - '-1' pragma: @@ -2730,13 +2777,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/162cdfaa-f238-48ea-a751-5ac994418e65 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/2406693b-81f4-4631-98a8-7bec2009ba6a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994 + - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73980 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8ED033926DB24B7BB405162FED9AB60C Ref B: SG2AA1040517031 Ref C: 2026-02-16T00:56:22Z' + - 'Ref A: 497A3C0B9BFC4FC5A88BEEB6570A93F3 Ref B: SG2AA1070304025 Ref C: 2026-02-24T04:42:15Z' status: code: 200 message: OK @@ -2774,7 +2821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:24 GMT + - Tue, 24 Feb 2026 04:42:16 GMT expires: - '-1' pragma: @@ -2786,13 +2833,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/a1e64e8b-89eb-4c89-919b-c9962067c3cc + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/987b76b5-331c-4762-83e7-a6ab2b74afc1 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8FF34813E1BD40D99265D595FBF86865 Ref B: SG2AA1070306040 Ref C: 2026-02-16T00:56:23Z' + - 'Ref A: 2CC403B47AC9415ABEF95B402E016945 Ref B: SG2AA1040516023 Ref C: 2026-02-24T04:42:16Z' status: code: 200 message: OK @@ -2838,7 +2885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:25 GMT + - Tue, 24 Feb 2026 04:42:17 GMT expires: - '-1' pragma: @@ -2850,13 +2897,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/4f42e55e-77ec-44d1-8e35-01d234e266aa + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/62ea16a5-491c-4bf6-924f-6540b540ae84 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993 + - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73979 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: E2A8D614348648F9873822AE091B09C6 Ref B: SG2AA1070303023 Ref C: 2026-02-16T00:56:24Z' + - 'Ref A: BA66A97C14B84EEA8978EEC09E081488 Ref B: SG2AA1040519060 Ref C: 2026-02-24T04:42:17Z' status: code: 200 message: OK @@ -4448,7 +4495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:28 GMT + - Tue, 24 Feb 2026 04:42:19 GMT expires: - '-1' pragma: @@ -4462,7 +4509,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B516BA46642447C68C35929EABC28572 Ref B: SG2AA1070304029 Ref C: 2026-02-16T00:56:25Z' + - 'Ref A: 02BEC3DF31A54F0187D50A8FEA752D4F Ref B: SG2AA1040517036 Ref C: 2026-02-24T04:42:18Z' status: code: 200 message: OK @@ -4497,7 +4544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:28 GMT + - Tue, 24 Feb 2026 04:42:20 GMT expires: - '-1' pragma: @@ -4511,7 +4558,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: FA0F0E2CE5664FB68A0FF707E3F8A5C6 Ref B: SG2AA1040512062 Ref C: 2026-02-16T00:56:28Z' + - 'Ref A: CE11873FCE42452CBB5928610B0FE027 Ref B: SG2AA1040513062 Ref C: 2026-02-24T04:42:19Z' status: code: 404 message: Not Found @@ -4519,7 +4566,7 @@ interactions: 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.Storage/storageAccounts", "name": "vhdstoragef8d24c9930c000", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage1ba6527faed599", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vnet1", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, @@ -4538,13 +4585,13 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"}}}, {"apiVersion": "2025-04-01", "type": "Microsoft.Compute/virtualMachines", "name": - "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000", + "testdiagvm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage1ba6527faed599", "Microsoft.Network/networkInterfaces/testdiagvmVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_B2ms"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic", "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "fromImage", "name": "osdisk_f8d24c9930", "caching": "ReadWrite", "vhd": {"uri": - "https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd"}}, + "fromImage", "name": "osdisk_1ba6527fae", "caching": "ReadWrite", "vhd": {"uri": + "https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "testdiagvm", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}}}], @@ -4572,18 +4619,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","name":"vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16666837761653360773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-16T00:56:30.1493886Z","duration":"PT0.0006465S","correlationId":"9f839a69-361f-42d4-b27e-5134cad5b709","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef8d24c9930c000"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_LII1l10kQO6IklUf2DlgCXkMoL7ZNnCg","name":"vm_deploy_LII1l10kQO6IklUf2DlgCXkMoL7ZNnCg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8698808862794647939","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2026-02-24T04:42:21.710168Z","duration":"PT0.0006233S","correlationId":"2a83bd28-f88c-4900-ac74-60bb7c544562","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1ba6527faed599","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1ba6527faed599"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_LII1l10kQO6IklUf2DlgCXkMoL7ZNnCg/operationStatuses/08584296987437570863?api-version=2024-11-01&t=639075049425226693&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=n2umkYHNKimQE9YrQ09QxeeBlDZ7Nmr0tBdE4pgTt3d4PZmwTvejlQ3xrPf1Q66W3mo40tXSCnnHGPMc3nS3lDNKZpSSuYI3u0CvNWsouSo2iNLLV62miDSAvSzsTfamUuFUThnQ9Z3Gg2OeQRXxNQ6pBl3Q4CB26bL4GoObxv8L5Qjm3N-0YL30hJdcACjrqNxvvlqNsx0td2dL87THvhg04tkKhfHqq9KvcDOR_gSB6po26_dyRlmuKTczDMlfcM0FtBi2VpYQmbTb1qyrMJkKl3-BZpRQmGQhaAo4U-pbT4aOeNLb2sOX6RqIRpD6wjh09bEDkVgLLibZTvvK4w&h=ySwHyjQgoTC_kRShTobTs8JrmADjv56hRfVhhzFDgrM cache-control: - no-cache content-length: - - '3024' + - '3022' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:30 GMT + - Tue, 24 Feb 2026 04:42:21 GMT expires: - '-1' pragma: @@ -4601,7 +4648,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: A60D87C37AE640DB8F6B3AF938BD698D Ref B: SG2AA1070304031 Ref C: 2026-02-16T00:56:29Z' + - 'Ref A: F1015AF271FE4409A2ED3119820C9EF3 Ref B: SG2AA1040520060 Ref C: 2026-02-24T04:42:20Z' status: code: 201 message: Created @@ -4622,7 +4669,54 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296987437570863?api-version=2024-11-01&t=639075049425226693&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=n2umkYHNKimQE9YrQ09QxeeBlDZ7Nmr0tBdE4pgTt3d4PZmwTvejlQ3xrPf1Q66W3mo40tXSCnnHGPMc3nS3lDNKZpSSuYI3u0CvNWsouSo2iNLLV62miDSAvSzsTfamUuFUThnQ9Z3Gg2OeQRXxNQ6pBl3Q4CB26bL4GoObxv8L5Qjm3N-0YL30hJdcACjrqNxvvlqNsx0td2dL87THvhg04tkKhfHqq9KvcDOR_gSB6po26_dyRlmuKTczDMlfcM0FtBi2VpYQmbTb1qyrMJkKl3-BZpRQmGQhaAo4U-pbT4aOeNLb2sOX6RqIRpD6wjh09bEDkVgLLibZTvvK4w&h=ySwHyjQgoTC_kRShTobTs8JrmADjv56hRfVhhzFDgrM + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Feb 2026 04: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-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9A2623AC46E642E981FB6D00EAF17A5B Ref B: SG2AA1040519023 Ref C: 2026-02-24T04:42:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --authentication-type --admin-username --admin-password --use-unmanaged-disk + --subnet --vnet-name --nsg-rule --size + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296987437570863?api-version=2024-11-01&t=639075049425226693&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=n2umkYHNKimQE9YrQ09QxeeBlDZ7Nmr0tBdE4pgTt3d4PZmwTvejlQ3xrPf1Q66W3mo40tXSCnnHGPMc3nS3lDNKZpSSuYI3u0CvNWsouSo2iNLLV62miDSAvSzsTfamUuFUThnQ9Z3Gg2OeQRXxNQ6pBl3Q4CB26bL4GoObxv8L5Qjm3N-0YL30hJdcACjrqNxvvlqNsx0td2dL87THvhg04tkKhfHqq9KvcDOR_gSB6po26_dyRlmuKTczDMlfcM0FtBi2VpYQmbTb1qyrMJkKl3-BZpRQmGQhaAo4U-pbT4aOeNLb2sOX6RqIRpD6wjh09bEDkVgLLibZTvvK4w&h=ySwHyjQgoTC_kRShTobTs8JrmADjv56hRfVhhzFDgrM response: body: string: '{"status":"Running"}' @@ -4634,7 +4728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:56:31 GMT + - Tue, 24 Feb 2026 04:42:54 GMT expires: - '-1' pragma: @@ -4648,7 +4742,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3E9DC07C52974813A19A7A0D0D00D883 Ref B: SG2AA1070306052 Ref C: 2026-02-16T00:56:31Z' + - 'Ref A: 1402D6D3B4544A24B8B52661B4BE6170 Ref B: SG2AA1040518036 Ref C: 2026-02-24T04:42:53Z' status: code: 200 message: OK @@ -4669,7 +4763,7 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296987437570863?api-version=2024-11-01&t=639075049425226693&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=n2umkYHNKimQE9YrQ09QxeeBlDZ7Nmr0tBdE4pgTt3d4PZmwTvejlQ3xrPf1Q66W3mo40tXSCnnHGPMc3nS3lDNKZpSSuYI3u0CvNWsouSo2iNLLV62miDSAvSzsTfamUuFUThnQ9Z3Gg2OeQRXxNQ6pBl3Q4CB26bL4GoObxv8L5Qjm3N-0YL30hJdcACjrqNxvvlqNsx0td2dL87THvhg04tkKhfHqq9KvcDOR_gSB6po26_dyRlmuKTczDMlfcM0FtBi2VpYQmbTb1qyrMJkKl3-BZpRQmGQhaAo4U-pbT4aOeNLb2sOX6RqIRpD6wjh09bEDkVgLLibZTvvK4w&h=ySwHyjQgoTC_kRShTobTs8JrmADjv56hRfVhhzFDgrM response: body: string: '{"status":"Running"}' @@ -4681,7 +4775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:01 GMT + - Tue, 24 Feb 2026 04:43:24 GMT expires: - '-1' pragma: @@ -4695,7 +4789,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3FC5A18932B94376A7CF4E26FC80D057 Ref B: SG2AA1040515062 Ref C: 2026-02-16T00:57:01Z' + - 'Ref A: 908C5114F3724950A48505CD074AF60A Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:43:24Z' status: code: 200 message: OK @@ -4716,7 +4810,7 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584304034953281393?api-version=2024-11-01&t=639068001908681353&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=nu3sWGae_YWDRiGPKW3rCW-xnK_n5X0-btmeKHum9hFCQ63X5Q56EQql1kBL6vFpoxJNpSBoDJjK7lmu5YV3oOy8g-NLcw2o38y0GTZz36S9zAzK34QDQQAGt8zhbyKGQ7zAB_uUH5M0oEpvJq179afBNzRQ4jJwX6bdjhHXEm1uR-qOLUlDuUm3HEUHbE3_8ZlFYaMsuAtJK5YSJHhvy4urCAvxDsDh8M7cP2PH-7v3mkXGsGQDK7u6jgC1CxiCTO5jvjjiMA5TyWME3RpjskZAf0RGDe_H2spnnqdkn9M_3v8w8HHLkha5CsBrQZ7MDMb3xL_X0PbvWcD3pakfsg&h=xRtXJNADpccIPLn1AUuNQ9irifDKae4yPgtA4Tfcvlk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584296987437570863?api-version=2024-11-01&t=639075049425226693&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=n2umkYHNKimQE9YrQ09QxeeBlDZ7Nmr0tBdE4pgTt3d4PZmwTvejlQ3xrPf1Q66W3mo40tXSCnnHGPMc3nS3lDNKZpSSuYI3u0CvNWsouSo2iNLLV62miDSAvSzsTfamUuFUThnQ9Z3Gg2OeQRXxNQ6pBl3Q4CB26bL4GoObxv8L5Qjm3N-0YL30hJdcACjrqNxvvlqNsx0td2dL87THvhg04tkKhfHqq9KvcDOR_gSB6po26_dyRlmuKTczDMlfcM0FtBi2VpYQmbTb1qyrMJkKl3-BZpRQmGQhaAo4U-pbT4aOeNLb2sOX6RqIRpD6wjh09bEDkVgLLibZTvvK4w&h=ySwHyjQgoTC_kRShTobTs8JrmADjv56hRfVhhzFDgrM response: body: string: '{"status":"Succeeded"}' @@ -4728,7 +4822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:31 GMT + - Tue, 24 Feb 2026 04:43:55 GMT expires: - '-1' pragma: @@ -4742,7 +4836,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 68659444C3D14BF5BF3D14AE1E8FC9AF Ref B: SG2AA1070301029 Ref C: 2026-02-16T00:57:32Z' + - 'Ref A: 89FB73B0379F4C8CA8316A9173CC4307 Ref B: SG2AA1070304060 Ref C: 2026-02-24T04:43:55Z' status: code: 200 message: OK @@ -4766,16 +4860,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","name":"vm_deploy_ey4CWGQxDHBFA0DSBoRjpIwHjjovpvOZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16666837761653360773","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-16T00:57:27.5448877Z","duration":"PT57.3954991S","correlationId":"9f839a69-361f-42d4-b27e-5134cad5b709","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef8d24c9930c000"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef8d24c9930c000"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Resources/deployments/vm_deploy_LII1l10kQO6IklUf2DlgCXkMoL7ZNnCg","name":"vm_deploy_LII1l10kQO6IklUf2DlgCXkMoL7ZNnCg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8698808862794647939","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2026-02-24T04:43:33.4565133Z","duration":"PT1M11.7463453S","correlationId":"2a83bd28-f88c-4900-ac74-60bb7c544562","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"testdiagvmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1ba6527faed599","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1ba6527faed599"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"testdiagvmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"testdiagvm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1ba6527faed599"}]}}' headers: cache-control: - no-cache content-length: - - '4150' + - '4151' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:32 GMT + - Tue, 24 Feb 2026 04:43:55 GMT expires: - '-1' pragma: @@ -4789,7 +4883,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 07CE409F59314D808D8891993A42270D Ref B: SG2AA1070301062 Ref C: 2026-02-16T00:57:32Z' + - 'Ref A: 0311433D580F4769882B3B76130ECAD6 Ref B: SG2AA1070302054 Ref C: 2026-02-24T04:43:55Z' status: code: 200 message: OK @@ -4817,13 +4911,13 @@ interactions: \ \"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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + \ \"vmId\": \"efcda4a8-eba8-4c8b-82e1-2b96dcdfc082\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \"osdisk_1ba6527fae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n @@ -4833,33 +4927,34 @@ interactions: \ \"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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\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\": - \"2026-02-16T00:57:34+00:00\"\r\n }\r\n ]\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"instanceView\": {\r\n \"computerName\": \"testdiagvm\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-24T04:43:35+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_1ba6527fae\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:42:47.5124963+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\": \"2026-02-16T00:57:26.574841+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:43:32.7934268+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2026-02-24T04:42:47.1218745+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3039' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:34 GMT + - Tue, 24 Feb 2026 04:43:56 GMT expires: - '-1' pragma: @@ -4877,10 +4972,10 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 99843035FEA84637831F072F09812522 Ref B: SG2AA1070304040 Ref C: 2026-02-16T00:57:33Z' + - 'Ref A: 31F7CE12813940729281FAFF9179E0BC Ref B: SG2AA1070302042 Ref C: 2026-02-24T04:43:56Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -4901,7 +4996,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic?api-version=2022-01-01 response: body: - string: '{"name":"testdiagvmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","etag":"W/\"cc0dcf7a-d2b6-441f-9961-cb1b84551d05\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"bb695f0a-ffd8-465b-b9b2-2c0c0f81a87d","ipConfigurations":[{"name":"ipconfigtestdiagvm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm","etag":"W/\"cc0dcf7a-d2b6-441f-9961-cb1b84551d05\"","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_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"wawp41bv1eiepordlobkjj5q0c.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-35-20-5C","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' + string: '{"name":"testdiagvmVMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic","etag":"W/\"df5c8f30-0c17-41d0-9d15-30b06be9d775\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4f4e5ebc-03e9-44d4-b3e2-32dc7a55b5d7","ipConfigurations":[{"name":"ipconfigtestdiagvm","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm","etag":"W/\"df5c8f30-0c17-41d0-9d15-30b06be9d775\"","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_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"5hncaf4hw14ebmuumkumwukrhb.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-5A-57-21","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmNSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":false,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache @@ -4910,9 +5005,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:33 GMT + - Tue, 24 Feb 2026 04:43:56 GMT etag: - - W/"cc0dcf7a-d2b6-441f-9961-cb1b84551d05" + - W/"df5c8f30-0c17-41d0-9d15-30b06be9d775" expires: - '-1' pragma: @@ -4924,11 +5019,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e91de9a9-c652-4d66-9912-713adddcffa4 + - 4920a530-57b3-4356-9ae3-321af60e63ea x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: FFBB71AFC6C2463C9A2D9A8112211A87 Ref B: SG2AA1070301040 Ref C: 2026-02-16T00:57:34Z' + - 'Ref A: 8304724ECB29478083A76F7D70F95A9C Ref B: SG2AA1070305042 Ref C: 2026-02-24T04:43:56Z' status: code: 200 message: '' @@ -4952,18 +5047,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP?api-version=2022-01-01 response: body: - string: '{"name":"testdiagvmPublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","etag":"W/\"8f04ecff-e2dd-45ab-b9b7-1bb6dc192143\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"5b44794d-cb52-4dfc-adf9-ab0cbbe22df1","ipAddress":"20.237.140.194","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' + string: '{"name":"testdiagvmPublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/publicIPAddresses/testdiagvmPublicIP","etag":"W/\"8641546d-0037-471a-94a4-a879ffd052b6\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ba5ae5b9-6b1f-42c9-aec8-6b1ec929d51b","ipAddress":"23.100.35.9","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '856' + - '853' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:34 GMT + - Tue, 24 Feb 2026 04:43:57 GMT etag: - - W/"8f04ecff-e2dd-45ab-b9b7-1bb6dc192143" + - W/"8641546d-0037-471a-94a4-a879ffd052b6" expires: - '-1' pragma: @@ -4975,11 +5070,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba913c97-37ed-4c41-afea-2c3e52e19a7a + - cb743819-7cc0-499d-987f-d73da6808cf9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3748' x-msedge-ref: - - 'Ref A: 36EBB86A2BB348FE98D121BBA5680E8A Ref B: SG2AA1040512029 Ref C: 2026-02-16T00:57:34Z' + - 'Ref A: 6F3BA124E34242748F215521CC488401 Ref B: SG2AA1070302042 Ref C: 2026-02-24T04:43:57Z' status: code: 200 message: '' @@ -5002,7 +5097,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"b32a8505-84a8-4e2e-af9b-8425c96d2729\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONVRNCYSLWBJCSYIN42ZIN7YWHXJMFNRHRNTC5G/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"35f2da69-d029-4c29-9038-a49df7728ba0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONNN4SYAHAGACPWIMGBFF7ENABHT4SDZJBJYQRV/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -5011,9 +5106,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:38 GMT + - Tue, 24 Feb 2026 04:44:01 GMT etag: - - W/"b32a8505-84a8-4e2e-af9b-8425c96d2729" + - W/"35f2da69-d029-4c29-9038-a49df7728ba0" expires: - '-1' pragma: @@ -5025,13 +5120,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 756c6d03-8d25-4b9a-8e67-1204737374c3 + - cbbdfd2e-b7c0-4110-8e58-ccc2f218cf82 x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/b2e79d4b-636d-4f48-ac79-dd7a0e183e09 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/d9b4c4da-8817-4191-9b8c-0c4d6b1c6b37 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A61372790B9644FCA525B15DB1B6099B Ref B: SG2AA1040520034 Ref C: 2026-02-16T00:57:38Z' + - 'Ref A: CCDFFEDD599C448E89E967B2370687F3 Ref B: SG2AA1070304040 Ref C: 2026-02-24T04:44:00Z' status: code: 200 message: '' @@ -5061,12 +5156,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f5c4becb-21b0-4813-989c-dc0ef53d4406\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}],"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_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"5aa6e843-af7e-472c-a8f9-1f5ded170f5a\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic/ipConfigurations/ipconfigtestdiagvm"}],"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/a078aa62-b501-45d2-895d-193ea9d70919?api-version=2024-07-01&t=639068002598427610&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=KlLLsjwi26QzDGbrt_H06WAYGheGzFtX5Qn5OISS_iccsckljsQB4-PPdlu3YghWfuTYoZc_kxVlBqQ1XlxNfkUnYeKRlrXC6WilEqXsvt73WjuEX6CC7nJ_zSP9VxUw4eoq2pt7uUOGCxxEEoQxRqBw_lFzk7ni9SX-r9nW-L9yU1pzrzmm-VjBGlAB5lXVEA8_a7YGHbWxr39r2s4z9aUymkKjniLPF8TrXNinwgthoQY4UbXhS8L-MJIi80zNCzjfh-4mvD7Q-sGqxXYu16HfHNB2Mx-aGnuXWHgsOBc3gSBe4uYzt0WmmOZEkLoYOmSQugRGVgiKf_fwgm3HDA&h=gVC9oy2uPBCWUFtzcOSIETRtQ1tzZ1lGqqmtZaWLiNQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f420de2-1297-40b5-aaa6-88f635fb8e62?api-version=2024-07-01&t=639075050416263853&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=bkZAQnaHiLkzObGBBRAlv5HPloMkXT5XWR4e9MDBiVIXkikQeq20qHlZZC9uCcYFpxhTviVsh_LW71occEF7Dr6fnpm6oWcUvqBYiDrN8Sklc1eFm3jaR8NVdmjl9IjsL7vy4IIBZu7eFlnZeqFXW_lS96JNmh6xWfH_h8l03QZq-_m9AhE6RxhZ9kOFppIF5ZGbdJuiYh5mljJXLTxuDk8-tzWbAFGdCXPlkI11MP53OudhUja09iKceKlRRYoRZ1D0SIezLES4EEt_EXQBr6hSjpHGLk0mwjTMDr7O7R8cEBy4fbEZRZlcCDj7uM-R9GkVKMS5GnpkBOV_vwJ9-g&h=brnUeVu0V3j61C2CwozMlZEfWh2Kf-5-Rn2Pw2vi-Rk cache-control: - no-cache content-length: @@ -5074,7 +5169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:39 GMT + - Tue, 24 Feb 2026 04:44:01 GMT expires: - '-1' pragma: @@ -5086,15 +5181,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 519ee6dd-6147-494b-8c74-cf2411a6dd60 + - 73220d38-c3e8-4c00-acb2-edb433b9840e x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/15abef89-3155-48dc-bda9-02defd961a10 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/b1512a73-ce61-481d-82ac-26078640b8ed x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 59FB52300BB746C19EC3C251D3CDCD3B Ref B: SG2AA1040515054 Ref C: 2026-02-16T00:57:39Z' + - 'Ref A: FE84B627F65F47C9AC11457868266E4B Ref B: SG2AA1070301060 Ref C: 2026-02-24T04:44:01Z' status: code: 200 message: '' @@ -5114,7 +5209,7 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a078aa62-b501-45d2-895d-193ea9d70919?api-version=2024-07-01&t=639068002598427610&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=KlLLsjwi26QzDGbrt_H06WAYGheGzFtX5Qn5OISS_iccsckljsQB4-PPdlu3YghWfuTYoZc_kxVlBqQ1XlxNfkUnYeKRlrXC6WilEqXsvt73WjuEX6CC7nJ_zSP9VxUw4eoq2pt7uUOGCxxEEoQxRqBw_lFzk7ni9SX-r9nW-L9yU1pzrzmm-VjBGlAB5lXVEA8_a7YGHbWxr39r2s4z9aUymkKjniLPF8TrXNinwgthoQY4UbXhS8L-MJIi80zNCzjfh-4mvD7Q-sGqxXYu16HfHNB2Mx-aGnuXWHgsOBc3gSBe4uYzt0WmmOZEkLoYOmSQugRGVgiKf_fwgm3HDA&h=gVC9oy2uPBCWUFtzcOSIETRtQ1tzZ1lGqqmtZaWLiNQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f420de2-1297-40b5-aaa6-88f635fb8e62?api-version=2024-07-01&t=639075050416263853&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=bkZAQnaHiLkzObGBBRAlv5HPloMkXT5XWR4e9MDBiVIXkikQeq20qHlZZC9uCcYFpxhTviVsh_LW71occEF7Dr6fnpm6oWcUvqBYiDrN8Sklc1eFm3jaR8NVdmjl9IjsL7vy4IIBZu7eFlnZeqFXW_lS96JNmh6xWfH_h8l03QZq-_m9AhE6RxhZ9kOFppIF5ZGbdJuiYh5mljJXLTxuDk8-tzWbAFGdCXPlkI11MP53OudhUja09iKceKlRRYoRZ1D0SIezLES4EEt_EXQBr6hSjpHGLk0mwjTMDr7O7R8cEBy4fbEZRZlcCDj7uM-R9GkVKMS5GnpkBOV_vwJ9-g&h=brnUeVu0V3j61C2CwozMlZEfWh2Kf-5-Rn2Pw2vi-Rk response: body: string: '{"status":"Succeeded"}' @@ -5126,7 +5221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:40 GMT + - Tue, 24 Feb 2026 04:44:02 GMT expires: - '-1' pragma: @@ -5138,13 +5233,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9bbd33a2-9c8f-4c5c-8e23-5e6cabfaf366 + - 5d5f0d44-7c67-49c9-8682-d93d76d80c47 x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/142a9e0d-2ca9-4b59-b21b-11bf04fb9af7 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/61ac1df8-e27f-4ff5-942e-de37595ecef3 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 708F99ADC3FB402989ECDD7A38CDC837 Ref B: SG2AA1040515031 Ref C: 2026-02-16T00:57:40Z' + - 'Ref A: A0EFCCA9A1FF457FA846CB81A86B61D3 Ref B: SG2AA1040516060 Ref C: 2026-02-24T04:44:01Z' status: code: 200 message: '' @@ -5167,7 +5262,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/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_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"42d35f77-5fe4-45ff-9b65-fa26cb22bae9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONVRNCYSLWBJCSYIN42ZIN7YWHXJMFNRHRNTC5G/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"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_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"3bce5e65-6300-414b-8476-a573914e72ee\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_VMSS_DIAGNOSTICS_EXTENSIONNN4SYAHAGACPWIMGBFF7ENABHT4SDZJBJYQRV/providers/Microsoft.Network/networkInterfaces/TESTDIAGVMVMNIC/ipConfigurations/IPCONFIGTESTDIAGVM"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -5176,9 +5271,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:41 GMT + - Tue, 24 Feb 2026 04:44:03 GMT etag: - - W/"42d35f77-5fe4-45ff-9b65-fa26cb22bae9" + - W/"3bce5e65-6300-414b-8476-a573914e72ee" expires: - '-1' pragma: @@ -5190,13 +5285,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c74f775-8f4f-410c-b141-e07bff4e755a + - e86f1f76-2340-403d-9c12-18410cf86453 x-ms-operation-identifier: - - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/427231af-0fb5-4da1-a02b-84da5c639a04 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/2a736e76-1f1d-47de-891e-90e82f1e85a9 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 675A02F0576748609B6EC67DB798B923 Ref B: SG2AA1040519025 Ref C: 2026-02-16T00:57:41Z' + - 'Ref A: 4C71C79540DD49C984F2DD8B286F6EE5 Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:44:02Z' status: code: 200 message: '' @@ -5226,7 +5321,7 @@ interactions: \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"testd3e06\",\r\n \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": @@ -5237,12 +5332,12 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n - \ \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd3e06Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd3e06IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n }\r\n}" + \"3f2bc8a9-0109-45e6-879e-145682fe643a\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -5251,7 +5346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:42 GMT + - Tue, 24 Feb 2026 04:44:04 GMT etag: - '"3"' expires: @@ -5271,10 +5366,10 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 32B071BC17674DD4B5048E563FB19A5A Ref B: SG2AA1070302023 Ref C: 2026-02-16T00:57:42Z' + - 'Ref A: FDE04A2DEA664783A9E06A61FA58DAA1 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:44:03Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5301,7 +5396,7 @@ interactions: \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"testd3e06\",\r\n \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": @@ -5312,12 +5407,12 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n - \ \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd3e06Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd3e06IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n }\r\n}" + \"3f2bc8a9-0109-45e6-879e-145682fe643a\",\r\n \"platformFaultDomainCount\": + 5,\r\n \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -5326,7 +5421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:42 GMT + - Tue, 24 Feb 2026 04:44:04 GMT etag: - '"3"' expires: @@ -5346,22 +5441,22 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EF682BA0B108470B8D97168190512FB2 Ref B: SG2AA1070302025 Ref C: 2026-02-16T00:57:42Z' + - 'Ref A: F66EF68DB22D42E794CBCAE322858409 Ref B: SG2AA1040516031 Ref C: 2026-02-24T04:44:04Z' status: code: 200 message: '' - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_B1ls", "tier": "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual"}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testd7aeb", "adminUsername": + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "testd3e06", "adminUsername": "user11", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": - "testd7aebNic", "properties": {"primary": true, "disableTcpStateTracking": false, + "testd3e06Nic", "properties": {"primary": true, "disableTcpStateTracking": false, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG"}, - "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testd7aebIPConfig", + "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "testd3e06IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool"}]}}], @@ -5548,7 +5643,7 @@ interactions: \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"testd3e06\",\r\n \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": @@ -5559,7 +5654,7 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd3e06Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd3e06IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": @@ -5614,16 +5709,16 @@ interactions: percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": - \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"2026-02-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n + false,\r\n \"uniqueId\": \"3f2bc8a9-0109-45e6-879e-145682fe643a\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-24T04:40:54.5601748+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/cfbb9765-4e7b-47e9-914a-ce89ce8130da?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002697432759&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=r3Isc22IA8Emuu_nOoY-gPHZHS4dSsZlJoYiLfOpHpJ8RfoT2nEScek3UZau4jHiucKMKgHF7GA8xQ3LXiKdp3YDkjQ5SJBZ5vVnWIEFJVfz9b7IClcFqEm6uZyvNBQMcHTA43YEk_O1TvCpQPwmLJ-YP8rHLhUkwrp-semchCZdzQTg90dH0DZ8zxSYCOwLPLA6H1_97EVhW7DNML8Ydx016MtjJ3fQfOMrg6tp0zsKnnYLAw128_HJQ6KrZ8BjGzy70NbYd-P3tMmsoiPtrMflM17oQhkUWEHDyB6KvQgTr1dDbroOax4kmg51kCuYGX_V4uYK9G1a1ZLlCwKdog&h=ADq-GpW_oL-nMU_2bd2kEUq3Svt7jtyWKfu13NHpP4U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b4822241-0ead-4b84-a7e7-182e23016ef8?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050462591493&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=H2pDjZacFqS2zCVN90mRX64sInsoNc40vAD6DG1aELbk23Ft4tJBH0B87R-GZqMMZdHrOcgSEXbZPL_mxLXsxINupvipucRsjq1swpm50JwFO2FVq5cGgjwramQGYcf1nDii_vdZiD5MghFwi6OfK0hs2aath5op4cKyxEKyzSeQ75CbMiBijRNf4pCQZkxXXNQ9YA_wZK-953VugedsnGkCEG-IWGFcXp_Z1KlfVdduGyE7XJxDVSWVrQ62-kBPMj_0EcLFosLqr_kgddsc4jVc91lEv5k1NXGY_KsYp0Dq39UFfBSJHmhbNlmsMs5gAAu4yC6C0kzy2bo6A42HpA&h=I7EPxFGTLMg0M5Ds-CjOhPmKbaqf48Uz8QLvMcJwlv8 cache-control: - no-cache content-length: @@ -5631,7 +5726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:49 GMT + - Tue, 24 Feb 2026 04:44:06 GMT etag: - '"4"' expires: @@ -5647,7 +5742,7 @@ interactions: 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/382aa657-3732-41a1-8215-24bdd3ec1fd2 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/ff734313-fa0a-469a-80a5-b01be7c4fdde x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5657,10 +5752,10 @@ interactions: x-ms-request-charge: - '0' x-msedge-ref: - - 'Ref A: ADC4DE6D65B24D3188F3F99161DDB6CC Ref B: SG2AA1040518052 Ref C: 2026-02-16T00:57:43Z' + - 'Ref A: 9B7CB560B68F46E0B1FB6EE4992F9D96 Ref B: SG2AA1040512062 Ref C: 2026-02-24T04:44:05Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5677,12 +5772,12 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cfbb9765-4e7b-47e9-914a-ce89ce8130da?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002697432759&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=r3Isc22IA8Emuu_nOoY-gPHZHS4dSsZlJoYiLfOpHpJ8RfoT2nEScek3UZau4jHiucKMKgHF7GA8xQ3LXiKdp3YDkjQ5SJBZ5vVnWIEFJVfz9b7IClcFqEm6uZyvNBQMcHTA43YEk_O1TvCpQPwmLJ-YP8rHLhUkwrp-semchCZdzQTg90dH0DZ8zxSYCOwLPLA6H1_97EVhW7DNML8Ydx016MtjJ3fQfOMrg6tp0zsKnnYLAw128_HJQ6KrZ8BjGzy70NbYd-P3tMmsoiPtrMflM17oQhkUWEHDyB6KvQgTr1dDbroOax4kmg51kCuYGX_V4uYK9G1a1ZLlCwKdog&h=ADq-GpW_oL-nMU_2bd2kEUq3Svt7jtyWKfu13NHpP4U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b4822241-0ead-4b84-a7e7-182e23016ef8?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050462591493&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=H2pDjZacFqS2zCVN90mRX64sInsoNc40vAD6DG1aELbk23Ft4tJBH0B87R-GZqMMZdHrOcgSEXbZPL_mxLXsxINupvipucRsjq1swpm50JwFO2FVq5cGgjwramQGYcf1nDii_vdZiD5MghFwi6OfK0hs2aath5op4cKyxEKyzSeQ75CbMiBijRNf4pCQZkxXXNQ9YA_wZK-953VugedsnGkCEG-IWGFcXp_Z1KlfVdduGyE7XJxDVSWVrQ62-kBPMj_0EcLFosLqr_kgddsc4jVc91lEv5k1NXGY_KsYp0Dq39UFfBSJHmhbNlmsMs5gAAu4yC6C0kzy2bo6A42HpA&h=I7EPxFGTLMg0M5Ds-CjOhPmKbaqf48Uz8QLvMcJwlv8 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:57:49.4657761+00:00\",\r\n \"endTime\": - \"2026-02-16T00:57:49.9189166+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cfbb9765-4e7b-47e9-914a-ce89ce8130da\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:44:05.8400645+00:00\",\r\n \"endTime\": + \"2026-02-24T04:44:06.4025739+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b4822241-0ead-4b84-a7e7-182e23016ef8\"\r\n}" headers: cache-control: - no-cache @@ -5691,7 +5786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:49 GMT + - Tue, 24 Feb 2026 04:44:06 GMT expires: - '-1' pragma: @@ -5705,16 +5800,16 @@ interactions: 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/c0681e4c-84c8-43e4-a756-5fd4efee2e52 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/0dea5b0d-a1e8-4ed1-bf52-7e5e5ffba35e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7E70F065E855450FAFDE48AA49D2759C Ref B: SG2AA1070302040 Ref C: 2026-02-16T00:57:50Z' + - 'Ref A: E3F4E19D9EE2439FA0FEFDB7982D6AA9 Ref B: SG2AA1070301052 Ref C: 2026-02-24T04:44:06Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5741,7 +5836,7 @@ interactions: \"\\\"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\": \"testd7aeb\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"testd3e06\",\r\n \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": @@ -5752,7 +5847,7 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd3e06Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd3e06IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": @@ -5807,10 +5902,10 @@ interactions: percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": - \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"2026-02-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n + false,\r\n \"uniqueId\": \"3f2bc8a9-0109-45e6-879e-145682fe643a\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -5820,7 +5915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:50 GMT + - Tue, 24 Feb 2026 04:44:07 GMT etag: - '"4"' expires: @@ -5840,7 +5935,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F3F3DE830DBC49E694DC0AFC3984D495 Ref B: SG2AA1070301029 Ref C: 2026-02-16T00:57:50Z' + - 'Ref A: 96E2E5C02D8C4F9D90833DA2C07CC61C Ref B: SG2AA1040520042 Ref C: 2026-02-24T04:44:07Z' status: code: 200 message: '' @@ -5872,17 +5967,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050483878709&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=GY_L_steKH-74qsMC9ELjwH1n6BrkuZuA6OgNWj-i2urVQlJ0GvKmIAgsvxyRlmySbKgP0UdkuiXDs-dIPpfDMYJCMa7wpunGPZBiT2FPEuwSw9nEiHFFQxCqE5NgBKOZMKdtIXz2mHHZHfprtYOLV02yACSkisPoZtoy5MJm_9Il6PbDOfqK30fBV5yLqei19bZ3yjD9SpkQSSPfTz1PPypAkiozbIhkdvkcAAZHHpuljITprIbifK6aDhXyRmXZ0cjOj00Hzi5lPi1RcU38jtUAQNsf3zgl1Kt0Zbi-Xsq8ZbclsuuQJMS9EA5b-pKnqN3z4daIXVZUK8go8uD-Q&h=JQNJkRmlnJwPQMVcYMmcvGxXLrmcZygla-mukIv9L64 cache-control: - no-cache content-length: - '0' date: - - Mon, 16 Feb 2026 00:57:51 GMT + - Tue, 24 Feb 2026 04:44:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639075050484034590&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=EVaFtpnFRBAUy4UnR3YkDiCp2rZs-A1EqQgDT17r1yrpTWNlnf5d8RlP2fdRlO2DiRJ_oJ_RobX7BBvbZv1xLCCzzp_r78RYsMYNG3rAqcYY6C99uXOuDe9AgC4Y9w0ElcMLC7xL6Btw8hIpuOwaZLaTNxTBWvgNidg06CugSpeWZ5iGfzYsk_fXwpJql0Ya2z0bHP7Xmh_kN2u9ccCgu2srpGQzkh15-_oNHS5ANIusF3jIOUryhERIRP5rtKg0qlaO_R64W4lKGkUBxMNfGOh6f6aENoiUR4cJDQoAkqYLNKJDtFON8SfVOPK6WoGYaMU6TEx4121psImp8-RYVA&h=drfS0Gr6KdypnJanreAyB2vKxUWT6i6wxwkAxsHH4yc pragma: - no-cache strict-transport-security: @@ -5894,7 +5989,7 @@ interactions: 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/2a22b710-2bc9-40e2-8f2e-b9e193a911b7 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/36ce39ac-73bb-4f75-8506-d2a149a3dfed x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-global-writes: @@ -5904,10 +5999,10 @@ interactions: x-ms-request-charge: - '2' x-msedge-ref: - - 'Ref A: 1D617DBBDBDC49BAB6CE2AB4CD7CD6B8 Ref B: SG2AA1070302060 Ref C: 2026-02-16T00:57:51Z' + - 'Ref A: A841FDB681974B219D2862E2D178CAD0 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:44:08Z' status: code: 202 - message: '' + message: Accepted - request: body: null headers: @@ -5924,11 +6019,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050483878709&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=GY_L_steKH-74qsMC9ELjwH1n6BrkuZuA6OgNWj-i2urVQlJ0GvKmIAgsvxyRlmySbKgP0UdkuiXDs-dIPpfDMYJCMa7wpunGPZBiT2FPEuwSw9nEiHFFQxCqE5NgBKOZMKdtIXz2mHHZHfprtYOLV02yACSkisPoZtoy5MJm_9Il6PbDOfqK30fBV5yLqei19bZ3yjD9SpkQSSPfTz1PPypAkiozbIhkdvkcAAZHHpuljITprIbifK6aDhXyRmXZ0cjOj00Hzi5lPi1RcU38jtUAQNsf3zgl1Kt0Zbi-Xsq8ZbclsuuQJMS9EA5b-pKnqN3z4daIXVZUK8go8uD-Q&h=JQNJkRmlnJwPQMVcYMmcvGxXLrmcZygla-mukIv9L64 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:44:08.2463005+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a51acaf5-e34e-4f65-86eb-b3b21dd0f001\"\r\n}" headers: cache-control: - no-cache @@ -5937,7 +6032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:57:52 GMT + - Tue, 24 Feb 2026 04:44:08 GMT expires: - '-1' pragma: @@ -5951,16 +6046,16 @@ interactions: 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/6f13fb44-580b-426a-b777-ba6090d2d0ae + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e542d85e-1213-453b-8292-28dacde49e9d 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: 88D0F89D04E246F78CFF910C5D503D91 Ref B: SG2AA1040517036 Ref C: 2026-02-16T00:57:52Z' + - 'Ref A: 6F238C5989DE4AA0A84CB81847BD5400 Ref B: SG2AA1040517034 Ref C: 2026-02-24T04:44:08Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5977,11 +6072,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050483878709&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=GY_L_steKH-74qsMC9ELjwH1n6BrkuZuA6OgNWj-i2urVQlJ0GvKmIAgsvxyRlmySbKgP0UdkuiXDs-dIPpfDMYJCMa7wpunGPZBiT2FPEuwSw9nEiHFFQxCqE5NgBKOZMKdtIXz2mHHZHfprtYOLV02yACSkisPoZtoy5MJm_9Il6PbDOfqK30fBV5yLqei19bZ3yjD9SpkQSSPfTz1PPypAkiozbIhkdvkcAAZHHpuljITprIbifK6aDhXyRmXZ0cjOj00Hzi5lPi1RcU38jtUAQNsf3zgl1Kt0Zbi-Xsq8ZbclsuuQJMS9EA5b-pKnqN3z4daIXVZUK8go8uD-Q&h=JQNJkRmlnJwPQMVcYMmcvGxXLrmcZygla-mukIv9L64 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:44:08.2463005+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a51acaf5-e34e-4f65-86eb-b3b21dd0f001\"\r\n}" headers: cache-control: - no-cache @@ -5990,7 +6085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:58:22 GMT + - Tue, 24 Feb 2026 04:44:39 GMT expires: - '-1' pragma: @@ -6004,16 +6099,16 @@ interactions: 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/8436dbed-4f8f-4a03-afa3-36a871b8a6ce + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/819cac8d-8f19-41a7-b580-fc5c279c05cf 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: 38CE3494A8284C9CB256FFD490E57B7F Ref B: SG2AA1040515062 Ref C: 2026-02-16T00:58:23Z' + - 'Ref A: 19982EC26BFF47E6944A8297D589873C Ref B: SG2AA1070301042 Ref C: 2026-02-24T04:44:39Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6030,11 +6125,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050483878709&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=GY_L_steKH-74qsMC9ELjwH1n6BrkuZuA6OgNWj-i2urVQlJ0GvKmIAgsvxyRlmySbKgP0UdkuiXDs-dIPpfDMYJCMa7wpunGPZBiT2FPEuwSw9nEiHFFQxCqE5NgBKOZMKdtIXz2mHHZHfprtYOLV02yACSkisPoZtoy5MJm_9Il6PbDOfqK30fBV5yLqei19bZ3yjD9SpkQSSPfTz1PPypAkiozbIhkdvkcAAZHHpuljITprIbifK6aDhXyRmXZ0cjOj00Hzi5lPi1RcU38jtUAQNsf3zgl1Kt0Zbi-Xsq8ZbclsuuQJMS9EA5b-pKnqN3z4daIXVZUK8go8uD-Q&h=JQNJkRmlnJwPQMVcYMmcvGxXLrmcZygla-mukIv9L64 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:44:08.2463005+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a51acaf5-e34e-4f65-86eb-b3b21dd0f001\"\r\n}" headers: cache-control: - no-cache @@ -6043,7 +6138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:58:54 GMT + - Tue, 24 Feb 2026 04:45:10 GMT expires: - '-1' pragma: @@ -6057,13 +6152,13 @@ interactions: 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/6a1a3492-6020-43d2-95be-6be210b447bf + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/992f0d19-0330-47a6-ba3e-4b74f8b30528 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: 1E59124E0EFF42E793B4BA50B1EADCDF Ref B: SG2AA1070306060 Ref C: 2026-02-16T00:58:53Z' + - 'Ref A: AC5C826E4AE246AEB41AB81D6A363AB5 Ref B: SG2AA1070305023 Ref C: 2026-02-24T04:45:10Z' status: code: 200 message: '' @@ -6083,12 +6178,12 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075050483878709&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=GY_L_steKH-74qsMC9ELjwH1n6BrkuZuA6OgNWj-i2urVQlJ0GvKmIAgsvxyRlmySbKgP0UdkuiXDs-dIPpfDMYJCMa7wpunGPZBiT2FPEuwSw9nEiHFFQxCqE5NgBKOZMKdtIXz2mHHZHfprtYOLV02yACSkisPoZtoy5MJm_9Il6PbDOfqK30fBV5yLqei19bZ3yjD9SpkQSSPfTz1PPypAkiozbIhkdvkcAAZHHpuljITprIbifK6aDhXyRmXZ0cjOj00Hzi5lPi1RcU38jtUAQNsf3zgl1Kt0Zbi-Xsq8ZbclsuuQJMS9EA5b-pKnqN3z4daIXVZUK8go8uD-Q&h=JQNJkRmlnJwPQMVcYMmcvGxXLrmcZygla-mukIv9L64 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:57:51.8251899+00:00\",\r\n \"endTime\": - \"2026-02-16T00:59:22.6545309+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"692d8681-26db-4e98-a329-79fd9789ac5b\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:44:08.2463005+00:00\",\r\n \"endTime\": + \"2026-02-24T04:45:39.0580584+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a51acaf5-e34e-4f65-86eb-b3b21dd0f001\"\r\n}" headers: cache-control: - no-cache @@ -6097,7 +6192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:59:25 GMT + - Tue, 24 Feb 2026 04:45:41 GMT expires: - '-1' pragma: @@ -6111,16 +6206,16 @@ interactions: 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/aa0dcc45-6582-4298-9379-9303cddb4bb9 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/5ca62dd4-7658-4c15-8a6a-9e08495a091e 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: 25ECB1F3125E4412BACBB1712E5DB8C4 Ref B: SG2AA1070301042 Ref C: 2026-02-16T00:59:24Z' + - 'Ref A: 81D2E40F3374402DBABB5572CDA1EA35 Ref B: SG2AA1070306062 Ref C: 2026-02-24T04:45:41Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6137,7 +6232,7 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/692d8681-26db-4e98-a329-79fd9789ac5b?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068002719390416&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=J3Y_v7BTtosYOcHFg1cL7UKDhzErk8iE4N2DsycJn-zumSD4KO8KPgrIf72d6TLMjOCsuqKNuEwKXnpf1bhwX8Cbq_GhQKTcmBW1I_W_WkjIyIOVy_HrBsq1t_7fKH37pPqndKflEIUgiDuWWoQ3fDXLEuQDODyDE-t7eJYHlFpAhZRo8rr6EJj4W7FFiKjST0k1otl2rby4GcPilvz0VW4cjLTQaZx7796GHb3xATuVoUQ4InMCKjhZsdkwfqsT-mL1JAgm5d23LFzNlMEmjo4117_zidMch4KDA1owz0ndRIb5qNkK9nYzyHct_aGNGTvCUL_lkf9RKzXqa4chRA&h=_oHxSx3uNa-MZnUnqy-F4qKNhKrZcJTmW5dwvhZmYPc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a51acaf5-e34e-4f65-86eb-b3b21dd0f001?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639075050484034590&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=EVaFtpnFRBAUy4UnR3YkDiCp2rZs-A1EqQgDT17r1yrpTWNlnf5d8RlP2fdRlO2DiRJ_oJ_RobX7BBvbZv1xLCCzzp_r78RYsMYNG3rAqcYY6C99uXOuDe9AgC4Y9w0ElcMLC7xL6Btw8hIpuOwaZLaTNxTBWvgNidg06CugSpeWZ5iGfzYsk_fXwpJql0Ya2z0bHP7Xmh_kN2u9ccCgu2srpGQzkh15-_oNHS5ANIusF3jIOUryhERIRP5rtKg0qlaO_R64W4lKGkUBxMNfGOh6f6aENoiUR4cJDQoAkqYLNKJDtFON8SfVOPK6WoGYaMU6TEx4121psImp8-RYVA&h=drfS0Gr6KdypnJanreAyB2vKxUWT6i6wxwkAxsHH4yc response: body: string: '' @@ -6147,7 +6242,7 @@ interactions: content-length: - '0' date: - - Mon, 16 Feb 2026 00:59:25 GMT + - Tue, 24 Feb 2026 04:45:42 GMT expires: - '-1' pragma: @@ -6161,16 +6256,16 @@ interactions: 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/5ca12c6a-2056-44b8-92fd-09233101785b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/7d4e8dcd-b846-40a9-bc29-5fb585d4c705 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 39B9ECEACBA948688B1A0F609BDACDFD Ref B: SG2AA1070303060 Ref C: 2026-02-16T00:59:26Z' + - 'Ref A: 45A6C3E689334487A9BF55208CAD0189 Ref B: SG2AA1040519034 Ref C: 2026-02-24T04:45:42Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6197,7 +6292,7 @@ interactions: \"\\\"6\\\"\",\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\": \"testd7aeb\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"testd3e06\",\r\n \"adminUsername\": \"user11\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": @@ -6208,7 +6303,7 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd7aebNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd7aebIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n + \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testd3e06Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkSecurityGroups/testdiagvmssNSG\"},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testd3e06IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/virtualNetworks/testdiagvmssVNET/subnets/testdiagvmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Network/loadBalancers/testdiagvmssLB/backendAddressPools/testdiagvmssLBBEPool\"}]}}]}}]},\r\n \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \ \"name\": \"LinuxDiagnostic\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": @@ -6263,10 +6358,10 @@ interactions: percentage\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"percentusedmemory\",\"counterSpecifier\":\"/builtin/memory/percentusedmemory\",\"type\":\"builtin\",\"unit\":\"Percent\"},{\"annotation\":[{\"displayName\":\"Page writes\",\"locale\":\"en-us\"}],\"class\":\"memory\",\"counter\":\"pageswrittenpersec\",\"counterSpecifier\":\"/builtin/memory/pageswrittenpersec\",\"type\":\"builtin\",\"unit\":\"CountPerSecond\"}]},\"syslogEvents\":{\"syslogEventConfiguration\":{\"LOG_AUTH\":\"LOG_DEBUG\",\"LOG_AUTHPRIV\":\"LOG_DEBUG\",\"LOG_CRON\":\"LOG_DEBUG\",\"LOG_DAEMON\":\"LOG_DEBUG\",\"LOG_FTP\":\"LOG_DEBUG\",\"LOG_KERN\":\"LOG_DEBUG\",\"LOG_LOCAL0\":\"LOG_DEBUG\",\"LOG_LOCAL1\":\"LOG_DEBUG\",\"LOG_LOCAL2\":\"LOG_DEBUG\",\"LOG_LOCAL3\":\"LOG_DEBUG\",\"LOG_LOCAL4\":\"LOG_DEBUG\",\"LOG_LOCAL5\":\"LOG_DEBUG\",\"LOG_LOCAL6\":\"LOG_DEBUG\",\"LOG_LOCAL7\":\"LOG_DEBUG\",\"LOG_LPR\":\"LOG_DEBUG\",\"LOG_MAIL\":\"LOG_DEBUG\",\"LOG_NEWS\":\"LOG_DEBUG\",\"LOG_SYSLOG\":\"LOG_DEBUG\",\"LOG_USER\":\"LOG_DEBUG\",\"LOG_UUCP\":\"LOG_DEBUG\"}}},\"sampleRateInSeconds\":15}}\r\n \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": - \"2026-02-16T00:57:49.4814542+00:00\"\r\n },\r\n \"provisioningState\": + \"2026-02-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"e3707019-fbbc-49f0-96e7-e9cececb58d5\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-16T00:55:22.2606282+00:00\"\r\n + false,\r\n \"uniqueId\": \"3f2bc8a9-0109-45e6-879e-145682fe643a\",\r\n + \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2026-02-24T04:40:54.5601748+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -6276,7 +6371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:59:26 GMT + - Tue, 24 Feb 2026 04:45:44 GMT etag: - '"6"' expires: @@ -6296,7 +6391,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 41A17707098A4582BE83F63AF8F5F725 Ref B: SG2AA1070301062 Ref C: 2026-02-16T00:59:26Z' + - 'Ref A: DF3766AB1392497A9D212A074C55DF57 Ref B: SG2AA1040517054 Ref C: 2026-02-24T04:45:43Z' status: code: 200 message: '' @@ -6323,13 +6418,13 @@ interactions: \ \"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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + \ \"vmId\": \"efcda4a8-eba8-4c8b-82e1-2b96dcdfc082\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \"osdisk_1ba6527fae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n @@ -6344,29 +6439,29 @@ interactions: \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T00:58:35+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2026-02-24T04:45:36+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_1ba6527fae\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:42:47.5124963+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\": \"2026-02-16T00:57:26.574841+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:43:32.7934268+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2026-02-24T04:42:47.1218745+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3134' + - '3135' content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:59:27 GMT + - Tue, 24 Feb 2026 04:45:44 GMT expires: - '-1' pragma: @@ -6384,7 +6479,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 585E0B845343438781B8D744A93D8BF9 Ref B: SG2AA1040516054 Ref C: 2026-02-16T00:59:27Z' + - 'Ref A: 6E1DF6B86E1A41E0897FF6E601DA1CD8 Ref B: SG2AA1070304060 Ref C: 2026-02-24T04:45:44Z' status: code: 200 message: '' @@ -6621,7 +6716,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc0df13-6b83-4ed3-9e3a-88d468522d7e?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051463103657&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=EiPp136AIxdozdQTZNZxqY-XFeYyCGUfEakwpRG7st4pkyGz04cDBWwnRXSWoNcRTXYOeaZfSlE_OfbMI7qk4ZqlHv1u2BvSJKy0NfzU6BDdTYuilU6aWGD4_OM_ZwyQ0B4ttRY95fqMyRm-jLNimSQQE-R1RvqQEPqtzclTbfxBzewfIskNNEr8VIHOcIynCuGRdM3PzvEcAERD_VJSN7GuV2JNACgcfgV7Wsd3wH8ctR-7gDGqj8hXBinUnuPnxCgHsb3az_2nGRhonAJCafRbkiA5gacHC0PBIjD7p2dEvVjALoQxrBkF2CfqQhzy-br379okZRxtZ884cciiwg&h=uc09gv5ofOxa_d1KGmpIfThMrlJizh7v4xREDeXrh4E cache-control: - no-cache content-length: @@ -6629,7 +6724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:59:28 GMT + - Tue, 24 Feb 2026 04:45:45 GMT expires: - '-1' pragma: @@ -6643,7 +6738,7 @@ interactions: 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/f3575b98-3997-4c4a-985f-9f25589d7798 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/604afbe6-b27f-4542-887e-be3e82a45db4 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -6651,7 +6746,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 449C0F67FDE64465ACBD469BD1DBB192 Ref B: SG2AA1070306031 Ref C: 2026-02-16T00:59:28Z' + - 'Ref A: E04F9D83E47740BEAB2FD59FD212847A Ref B: SG2AA1070305031 Ref C: 2026-02-24T04:45:45Z' status: code: 201 message: '' @@ -6671,11 +6766,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc0df13-6b83-4ed3-9e3a-88d468522d7e?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051463103657&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=EiPp136AIxdozdQTZNZxqY-XFeYyCGUfEakwpRG7st4pkyGz04cDBWwnRXSWoNcRTXYOeaZfSlE_OfbMI7qk4ZqlHv1u2BvSJKy0NfzU6BDdTYuilU6aWGD4_OM_ZwyQ0B4ttRY95fqMyRm-jLNimSQQE-R1RvqQEPqtzclTbfxBzewfIskNNEr8VIHOcIynCuGRdM3PzvEcAERD_VJSN7GuV2JNACgcfgV7Wsd3wH8ctR-7gDGqj8hXBinUnuPnxCgHsb3az_2nGRhonAJCafRbkiA5gacHC0PBIjD7p2dEvVjALoQxrBkF2CfqQhzy-br379okZRxtZ884cciiwg&h=uc09gv5ofOxa_d1KGmpIfThMrlJizh7v4xREDeXrh4E response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:59:28.5139894+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"960c509e-ca62-4fcc-83ca-78fe89324932\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:45:46.1518498+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"adc0df13-6b83-4ed3-9e3a-88d468522d7e\"\r\n}" headers: cache-control: - no-cache @@ -6684,7 +6779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 00:59:29 GMT + - Tue, 24 Feb 2026 04:45:47 GMT expires: - '-1' pragma: @@ -6698,16 +6793,16 @@ interactions: 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/f96e6397-baa1-4335-a446-88c09b1e5336 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/dbe4e03f-3c37-4c79-b0ae-f03d506534cb 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: A26468B804364199A3D7A3E099B91C3E Ref B: SG2AA1040513040 Ref C: 2026-02-16T00:59:29Z' + - 'Ref A: CBEE5CF56787499AA1EF8CBE27E141BB Ref B: SG2AA1040520025 Ref C: 2026-02-24T04:45:46Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6724,12 +6819,12 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/960c509e-ca62-4fcc-83ca-78fe89324932?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068003686984030&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=YwieauU-fnMSlMHs979KNLuH2PBYJS4GxtuhzNXQVpgd9KCC7CSgrMjHNCqj41WnVTObiKMoJHwf5gw2zFQ4dASNDJPAkc3lp8D6QsSgAUwUaZac5vfp37huWGZlkEIQbBW96_H6sf86XnbcmJs2oMmdtbk3hpS_RBZHPNwNiUyRnHAamkB2ej8N1LUYU9Yw5dbanqn08xtMavhyp7P4luPdFbO9PXyXgcBQfQtyzDKlIa9vUWTmD016WU7C3J-nsQ0DdlQe61MuBDlriA5ZZFRZQsbzRiKVdYF8U_pQHuAbmWOw8_lEF1YZJggXLcsARUw4YKfCBBXx1ikcPvP9bQ&h=R50-5jc8ZL9W8MDLCdlf46vB2E5IPZj-1PzhnDzZDiQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adc0df13-6b83-4ed3-9e3a-88d468522d7e?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051463103657&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=EiPp136AIxdozdQTZNZxqY-XFeYyCGUfEakwpRG7st4pkyGz04cDBWwnRXSWoNcRTXYOeaZfSlE_OfbMI7qk4ZqlHv1u2BvSJKy0NfzU6BDdTYuilU6aWGD4_OM_ZwyQ0B4ttRY95fqMyRm-jLNimSQQE-R1RvqQEPqtzclTbfxBzewfIskNNEr8VIHOcIynCuGRdM3PzvEcAERD_VJSN7GuV2JNACgcfgV7Wsd3wH8ctR-7gDGqj8hXBinUnuPnxCgHsb3az_2nGRhonAJCafRbkiA5gacHC0PBIjD7p2dEvVjALoQxrBkF2CfqQhzy-br379okZRxtZ884cciiwg&h=uc09gv5ofOxa_d1KGmpIfThMrlJizh7v4xREDeXrh4E response: body: - string: "{\r\n \"startTime\": \"2026-02-16T00:59:28.5139894+00:00\",\r\n \"endTime\": - \"2026-02-16T00:59:38.9360061+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"960c509e-ca62-4fcc-83ca-78fe89324932\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:45:46.1518498+00:00\",\r\n \"endTime\": + \"2026-02-24T04:45:56.5890921+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"adc0df13-6b83-4ed3-9e3a-88d468522d7e\"\r\n}" headers: cache-control: - no-cache @@ -6738,7 +6833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:00 GMT + - Tue, 24 Feb 2026 04:46:17 GMT expires: - '-1' pragma: @@ -6752,13 +6847,13 @@ interactions: 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/62b4778c-78bc-4c4f-9f63-75d7d30b7eaa + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/29554cf2-bdf6-460a-917b-02b3281b3cb8 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2C26227C1524476483528FED79531050 Ref B: SG2AA1040513029 Ref C: 2026-02-16T01:00:00Z' + - 'Ref A: 0D2C539279654311A7AEF09AAE53B530 Ref B: SG2AA1070301023 Ref C: 2026-02-24T04:46:17Z' status: code: 200 message: '' @@ -6843,7 +6938,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:01 GMT + - Tue, 24 Feb 2026 04:46:17 GMT expires: - '-1' pragma: @@ -6861,10 +6956,10 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2E88DA9E60B64B43B5B93E8B0D45FF52 Ref B: SG2AA1040517060 Ref C: 2026-02-16T01:00:01Z' + - 'Ref A: 1ADB8DEBFFA14DE0BDCF68CBE2F97DAA Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:46:18Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6888,13 +6983,13 @@ interactions: \ \"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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + \ \"vmId\": \"efcda4a8-eba8-4c8b-82e1-2b96dcdfc082\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \"osdisk_1ba6527fae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n @@ -6909,17 +7004,17 @@ interactions: \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T00:59:52+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2026-02-24T04:46:11+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": \"2.3.9029\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"osdisk_1ba6527fae\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": - \"2026-02-16T00:56:56.3556823+00:00\"\r\n }\r\n ]\r\n + \"2026-02-24T04:42:47.5124963+00:00\"\r\n }\r\n ]\r\n \ }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \ \"typeHandlerVersion\": \"2.3.9029\",\r\n \"statuses\": @@ -6927,25 +7022,25 @@ interactions: \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Invalid mdsd config given. Can't enable. This extension install/enable operation is still considered a success - as it's an external error. Config validation result: 2026-02-16T00:59:48.6727500Z: + as it's an external error. Config validation result: 2026-02-24T04:46:07.0622430Z: Not all GCS env vars are defined. Missing 5: MONITORING_GCS_ENVIRONMENT MONITORING_GCS_ACCOUNT MONITORING_GCS_REGION MONITORING_GCS_CERT_CERTFILE MONITORING_GCS_CERT_KEYFILE. - GCS won't be used.\\n2026-02-16T00:59:48.6766330Z: Table SAS lacks [tn=]: - 123\\n2026-02-16T00:59:48.6769350Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6769990Z: - Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6770460Z: Table SAS lacks - [tn=]: 123\\n2026-02-16T00:59:48.6770840Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6771230Z: - Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6771650Z: Table SAS lacks - [tn=]: 123\\n2026-02-16T00:59:48.6772010Z: Table SAS lacks [tn=]: 123\\n2026-02-16T00:59:48.6772400Z: + GCS won't be used.\\n2026-02-24T04:46:07.0663080Z: Table SAS lacks [tn=]: + 123\\n2026-02-24T04:46:07.0666440Z: Table SAS lacks [tn=]: 123\\n2026-02-24T04:46:07.0667720Z: + Table SAS lacks [tn=]: 123\\n2026-02-24T04:46:07.0668220Z: Table SAS lacks + [tn=]: 123\\n2026-02-24T04:46:07.0668560Z: Table SAS lacks [tn=]: 123\\n2026-02-24T04:46:07.0668980Z: + Table SAS lacks [tn=]: 123\\n2026-02-24T04:46:07.0669430Z: Table SAS lacks + [tn=]: 123\\n2026-02-24T04:46:07.0669800Z: Table SAS lacks [tn=]: 123\\n2026-02-24T04:46:07.0670200Z: Table SAS lacks [tn=]: 123\\nParse reported these messages:\\n/var/lib/waagent/Microsoft.OSTCExtensions.LinuxDiagnostic-2.3.9029/./xmlCfg.xml(7) Warning: Empty value for IdentityComponent; hope that's okay\\n. Terminating LAD as it can't proceed.\"\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\": \"2026-02-16T00:59:38.8110062+00:00\"\r\n },\r\n + \ \"time\": \"2026-02-24T04:45:56.4484562+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ ]\r\n },\r\n \"timeCreated\": \"2026-02-24T04:42:47.1218745+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -7009,7 +7104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:01 GMT + - Tue, 24 Feb 2026 04:46:19 GMT expires: - '-1' pragma: @@ -7027,7 +7122,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8F97D4D3E5184218B7BA50D6D3E7F009 Ref B: SG2AA1040512052 Ref C: 2026-02-16T01:00:02Z' + - 'Ref A: E2706AECDE274126A939BABD0E44F778 Ref B: SG2AA1070301054 Ref C: 2026-02-24T04:46:18Z' status: code: 200 message: '' @@ -7057,17 +7152,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/42280820-3ec2-46d5-83f0-e184bb31e79a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051799616418&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=nqZFD7lMQTl6e4D6XKKS3cWD5nUnPY5Z1KEWAQ4ldZwfaTi7PTvZOE0YvEuLUrTrU3XuQEcmB2sO4M4Yt15OqhVrI-UZ1zdtXpK1wJBkU6WG5flyDKuTC0-Nt1UFqW042JhOL_cWuU-6yAY8v0hzRg8F1y_e8eS84NnxpXU5Sfi2H42EsqCxZy1eQ02Mh3411ikYqPJVxsYeW2-NJegMoCsHiYxLAcXh9rI2ANPihydWVr044ONPDundoFzkhhicY-lEZbXU-qSf48LvEgVx0qhf31IfnayKdvpSINdpO8mpLpyWyxIFzzeYj1XhrXx623WUoEz2vB-S7m_a9cGc1Q&h=hERnEe7Te4-XfrW2ES7FzUgyNlpGwTKGJcRKCtF-450 cache-control: - no-cache content-length: - '0' date: - - Mon, 16 Feb 2026 01:00:02 GMT + - Tue, 24 Feb 2026 04:46:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639068004031631817&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=VgXvyC2dAnd6lZyY4jPGkQFvarCOsCy7oZcXbG1Vbs8_-qC6D4YdlfNgf-U7VT0p2pj_rzly5103NTzxVEBVpSXnFx3eInzAwTUgQuGPYmJuuF2G3ndMPfw7pgLNE6w29ctGozWYZirvYRh6jRIykb3JxesWY4jkkrbvyfX50ztj5q20mXfhtgqLMvrYUEukl2fiOsz1Qe2dBZXU8jbk4-neI7p6W3Cbv1_yJ8iBPPDvAobpG1VYVN61maXNw1vWLyXzLjDE_0RSTIpTjO5Gf16cU7z3gCNKjs7JkJd-bsanxYvb7fWPbOARo1mC2QGiCXxVDKh2MNRCNtJvmTpvRA&h=tRI_tNTx6w4uQuBMY4atwJ-8NobWQ09KRygDGEnlh4I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/42280820-3ec2-46d5-83f0-e184bb31e79a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&monitor=true&api-version=2024-11-01&t=639075051799772702&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=Y8Ersy1cJ0zA4fG3P2YgDxWarBRO-fb3Xy4KWm8k-qDkDejDOzkpum2jMjZLaFlYnrDbSMSmoyO_jGHdQV2mcG7kZ4pofYm8IJAzMFzyNdaHy5Kzoj7dkAQHX7wfhiZY81FdFim-_ic7TaYfgq3rnAOZvcQYC-oui7bnSYSjsEXcMsMEPq-H-hcyzxN9_Oe6QuUdMhAr-gil0AhQDbjwpzKnV9nMX37djbpTJt3VkFEB1vppTp_Gy3yjrETjWWmq1ns1uEBHp45a311UYhRO1gHRgY-2gu8Li9Dz0nXDPcdnWBFp62KUe1_WLhNzxlfLklGJjBd3mFzF7P9A2k7puw&h=-GSubSnWqas3pnbhY39KAZAUJIWKbLN9zy7BUgNP1Es pragma: - no-cache strict-transport-security: @@ -7079,7 +7174,7 @@ interactions: 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/0d398f3c-47dd-428a-95da-7f0a8c215688 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/3fb0b16b-bc77-4cd7-aea5-0cc08513bb59 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1498,Microsoft.Compute/UpdateVMResource;10 x-ms-ratelimit-remaining-subscription-deletes: @@ -7087,7 +7182,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-deletes: - '2999' x-msedge-ref: - - 'Ref A: AD900EDB39FE43379C5BA0F296518215 Ref B: SG2AA1040516031 Ref C: 2026-02-16T01:00:02Z' + - 'Ref A: 1D7E1FBE2DC04C0F9FDD75334E270BA1 Ref B: SG2AA1040518036 Ref C: 2026-02-24T04:46:19Z' status: code: 202 message: '' @@ -7107,11 +7202,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/42280820-3ec2-46d5-83f0-e184bb31e79a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051799616418&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=nqZFD7lMQTl6e4D6XKKS3cWD5nUnPY5Z1KEWAQ4ldZwfaTi7PTvZOE0YvEuLUrTrU3XuQEcmB2sO4M4Yt15OqhVrI-UZ1zdtXpK1wJBkU6WG5flyDKuTC0-Nt1UFqW042JhOL_cWuU-6yAY8v0hzRg8F1y_e8eS84NnxpXU5Sfi2H42EsqCxZy1eQ02Mh3411ikYqPJVxsYeW2-NJegMoCsHiYxLAcXh9rI2ANPihydWVr044ONPDundoFzkhhicY-lEZbXU-qSf48LvEgVx0qhf31IfnayKdvpSINdpO8mpLpyWyxIFzzeYj1XhrXx623WUoEz2vB-S7m_a9cGc1Q&h=hERnEe7Te4-XfrW2ES7FzUgyNlpGwTKGJcRKCtF-450 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T01:00:03.0925778+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b05a8aba-d82d-4b42-97e7-ec02b8d9135c\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:46:19.9326645+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"42280820-3ec2-46d5-83f0-e184bb31e79a\"\r\n}" headers: cache-control: - no-cache @@ -7120,7 +7215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:03 GMT + - Tue, 24 Feb 2026 04:46:20 GMT expires: - '-1' pragma: @@ -7134,13 +7229,13 @@ interactions: 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/7c7ad036-07ec-4928-b0d3-235235044884 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/fa3e01eb-f307-4720-b08a-6deee07b2070 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DEE2AA90371D4E7680C7AFCAE75D7EAF Ref B: SG2AA1040519031 Ref C: 2026-02-16T01:00:03Z' + - 'Ref A: 0F4EEBC8F9484D2EA99D94F5A537D222 Ref B: SG2AA1040519029 Ref C: 2026-02-24T04:46:20Z' status: code: 200 message: '' @@ -7160,12 +7255,12 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b05a8aba-d82d-4b42-97e7-ec02b8d9135c?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004031475562&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=Cckw4wUzdpipEqTIRG4inl6S_FUPazHaS-dNNT07lwA29JHk8u3ywDNO5w1LiRBbg8uRd86ZT6436rDguwyqHiKYh6uTyL1SeGYFWlZC78uVFHOLOSFqPQ9kN-tK3NImOTNj33m8jkT7Gl1AuroWJvBhoNmZr97ljWlRLhM-WxSrzz1-PJnlJuxwbjsTFiK-jGq-SvWl0YqAgiDAqRbvZsbeB2BgtdWjqHtfj4MiADR45Q1JFbNeUW_lm9LypV3ix2z6vZiNpc1OsEv78BrV6IfoaIz1a_czxx3gF6w2ddvB4olfCbBMJ_KbiHp30nVTnDQWKkV4Wz4ZFzkytU6edQ&h=bFmH6dF_Hz-xOw9v5hDqrDJ438TAHPCejNRYeksXGxQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/42280820-3ec2-46d5-83f0-e184bb31e79a?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075051799616418&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=nqZFD7lMQTl6e4D6XKKS3cWD5nUnPY5Z1KEWAQ4ldZwfaTi7PTvZOE0YvEuLUrTrU3XuQEcmB2sO4M4Yt15OqhVrI-UZ1zdtXpK1wJBkU6WG5flyDKuTC0-Nt1UFqW042JhOL_cWuU-6yAY8v0hzRg8F1y_e8eS84NnxpXU5Sfi2H42EsqCxZy1eQ02Mh3411ikYqPJVxsYeW2-NJegMoCsHiYxLAcXh9rI2ANPihydWVr044ONPDundoFzkhhicY-lEZbXU-qSf48LvEgVx0qhf31IfnayKdvpSINdpO8mpLpyWyxIFzzeYj1XhrXx623WUoEz2vB-S7m_a9cGc1Q&h=hERnEe7Te4-XfrW2ES7FzUgyNlpGwTKGJcRKCtF-450 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T01:00:03.0925778+00:00\",\r\n \"endTime\": - \"2026-02-16T01:00:13.4989655+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b05a8aba-d82d-4b42-97e7-ec02b8d9135c\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:46:19.9326645+00:00\",\r\n \"endTime\": + \"2026-02-24T04:46:30.3075798+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"42280820-3ec2-46d5-83f0-e184bb31e79a\"\r\n}" headers: cache-control: - no-cache @@ -7174,7 +7269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:35 GMT + - Tue, 24 Feb 2026 04:46:51 GMT expires: - '-1' pragma: @@ -7188,13 +7283,13 @@ interactions: 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/0c15c92a-60fe-44da-8285-f5ac277b890d + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/dae41e47-e4fb-405d-b1c7-01c369a4686d 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: 0464B107313B4A059E377C59B045C3DC Ref B: SG2AA1070303060 Ref C: 2026-02-16T01:00:34Z' + - 'Ref A: 8EC35A57CBF5484D9AC1E8472A486A1D Ref B: SG2AA1070305040 Ref C: 2026-02-24T04:46:51Z' status: code: 200 message: '' @@ -7221,13 +7316,13 @@ interactions: \ \"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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + \ \"vmId\": \"efcda4a8-eba8-4c8b-82e1-2b96dcdfc082\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \"osdisk_1ba6527fae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n @@ -7242,19 +7337,19 @@ interactions: \ \"vmAgentVersion\": \"2.15.0.1\",\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\": \"2026-02-16T01:00:10+00:00\"\r\n + \"Guest Agent is running\",\r\n \"time\": \"2026-02-24T04:46:29+00:00\"\r\n \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n - \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_f8d24c9930\",\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"osdisk_1ba6527fae\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2026-02-16T00:56:56.3556823+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:42:47.5124963+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\": \"2026-02-16T01:00:13.3583389+00:00\"\r\n + succeeded\",\r\n \"time\": \"2026-02-24T04:46:30.1514457+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\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n + \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2026-02-24T04:42:47.1218745+00:00\"\r\n \ },\r\n \"etag\": \"\\\"2\\\"\"\r\n}" headers: cache-control: @@ -7264,7 +7359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:35 GMT + - Tue, 24 Feb 2026 04:46:52 GMT expires: - '-1' pragma: @@ -7278,11 +7373,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,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: CC9C0663104C49A5A0C94B9F7F0E365B Ref B: SG2AA1070303036 Ref C: 2026-02-16T01:00:35Z' + - 'Ref A: C4F3981D6D0A41D897AF9163F335786B Ref B: SG2AA1040516052 Ref C: 2026-02-24T04:46:52Z' status: code: 200 message: '' @@ -7519,7 +7614,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9290cbb2-6b7d-4c43-baa1-e84801e4406f?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075052136726805&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=gqgc3CORiR0K4vPrpPJ85UeLzpsInqMP2auZfyfjyiBZa6FMZCIph5Uz9eBb1VWoD9246vKMuXfcxSf6sbPEktLQz6x7ZkZ8sJ3Xw4ZzFC7tX7UfX3lAvgy-NL2QPojUCDGu9CspY0MCM-zTN5rPRj7X_apjhLHT0hoDjUHb-pmdl3IX0x_Zi37Uof-SaVxnHjig0ciI79Krhv4oeayaYq0RnUvB6LXLljQiBM8qwpdN8eLaJTDqm9NSXvBUBv5nOHh4aQCD2TuhWMJqKbO0hGocXX--HpoW4wPzYiJC1aYgrM6bn-agktkTu4Qrd2GE7FUCUtjmGjMkx0YmHBMC0Q&h=6mW7oUDkeFfK5q38KXNDUA-eKcHvRm1CIEwi-tHkzI4 cache-control: - no-cache content-length: @@ -7527,7 +7622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:37 GMT + - Tue, 24 Feb 2026 04:46:53 GMT expires: - '-1' pragma: @@ -7541,7 +7636,7 @@ interactions: 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/62bceebf-6a83-4b3f-823b-cf8d835d4931 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/westus/c42c916e-5e3c-48d3-b010-1ebd65c210d7 x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVMSubscriptionMaximum;1499,Microsoft.Compute/UpdateVMResource;11 x-ms-ratelimit-remaining-subscription-global-writes: @@ -7549,7 +7644,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: BC89990F01954BF3ACCFD235C74CECA8 Ref B: SG2AA1070301042 Ref C: 2026-02-16T01:00:36Z' + - 'Ref A: 424FEC38C17643C8BDEC6C200BBD139F Ref B: SG2AA1070304054 Ref C: 2026-02-24T04:46:52Z' status: code: 201 message: '' @@ -7569,11 +7664,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9290cbb2-6b7d-4c43-baa1-e84801e4406f?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075052136726805&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=gqgc3CORiR0K4vPrpPJ85UeLzpsInqMP2auZfyfjyiBZa6FMZCIph5Uz9eBb1VWoD9246vKMuXfcxSf6sbPEktLQz6x7ZkZ8sJ3Xw4ZzFC7tX7UfX3lAvgy-NL2QPojUCDGu9CspY0MCM-zTN5rPRj7X_apjhLHT0hoDjUHb-pmdl3IX0x_Zi37Uof-SaVxnHjig0ciI79Krhv4oeayaYq0RnUvB6LXLljQiBM8qwpdN8eLaJTDqm9NSXvBUBv5nOHh4aQCD2TuhWMJqKbO0hGocXX--HpoW4wPzYiJC1aYgrM6bn-agktkTu4Qrd2GE7FUCUtjmGjMkx0YmHBMC0Q&h=6mW7oUDkeFfK5q38KXNDUA-eKcHvRm1CIEwi-tHkzI4 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:46:53.5261313+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9290cbb2-6b7d-4c43-baa1-e84801e4406f\"\r\n}" headers: cache-control: - no-cache @@ -7582,7 +7677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:00:37 GMT + - Tue, 24 Feb 2026 04:46:53 GMT expires: - '-1' pragma: @@ -7596,13 +7691,66 @@ interactions: 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/7e04a394-5e6b-4892-9721-337c2ef09524 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/a043844a-3ddb-4113-a532-ac341710bca3 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: CB2FA46A759144D680F4193622FF095F Ref B: SG2AA1070304031 Ref C: 2026-02-16T01:00:37Z' + - 'Ref A: 3FD3062F3BAA4305887F22B77DECF64C Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:46:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm diagnostics set + Connection: + - keep-alive + ParameterSetName: + - -g --vm-name --settings --protected-settings + User-Agent: + - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9290cbb2-6b7d-4c43-baa1-e84801e4406f?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075052136726805&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=gqgc3CORiR0K4vPrpPJ85UeLzpsInqMP2auZfyfjyiBZa6FMZCIph5Uz9eBb1VWoD9246vKMuXfcxSf6sbPEktLQz6x7ZkZ8sJ3Xw4ZzFC7tX7UfX3lAvgy-NL2QPojUCDGu9CspY0MCM-zTN5rPRj7X_apjhLHT0hoDjUHb-pmdl3IX0x_Zi37Uof-SaVxnHjig0ciI79Krhv4oeayaYq0RnUvB6LXLljQiBM8qwpdN8eLaJTDqm9NSXvBUBv5nOHh4aQCD2TuhWMJqKbO0hGocXX--HpoW4wPzYiJC1aYgrM6bn-agktkTu4Qrd2GE7FUCUtjmGjMkx0YmHBMC0Q&h=6mW7oUDkeFfK5q38KXNDUA-eKcHvRm1CIEwi-tHkzI4 + response: + body: + string: "{\r\n \"startTime\": \"2026-02-24T04:46:53.5261313+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9290cbb2-6b7d-4c43-baa1-e84801e4406f\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Feb 2026 04:47: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-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/b0bdd6ac-2836-4997-86ae-733bafd9d0b6 + 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: 10D8C7B31E36414CA3E5281E31BA5325 Ref B: SG2AA1070304034 Ref C: 2026-02-24T04:47:24Z' status: code: 200 message: '' @@ -7622,11 +7770,11 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9290cbb2-6b7d-4c43-baa1-e84801e4406f?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075052136726805&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=gqgc3CORiR0K4vPrpPJ85UeLzpsInqMP2auZfyfjyiBZa6FMZCIph5Uz9eBb1VWoD9246vKMuXfcxSf6sbPEktLQz6x7ZkZ8sJ3Xw4ZzFC7tX7UfX3lAvgy-NL2QPojUCDGu9CspY0MCM-zTN5rPRj7X_apjhLHT0hoDjUHb-pmdl3IX0x_Zi37Uof-SaVxnHjig0ciI79Krhv4oeayaYq0RnUvB6LXLljQiBM8qwpdN8eLaJTDqm9NSXvBUBv5nOHh4aQCD2TuhWMJqKbO0hGocXX--HpoW4wPzYiJC1aYgrM6bn-agktkTu4Qrd2GE7FUCUtjmGjMkx0YmHBMC0Q&h=6mW7oUDkeFfK5q38KXNDUA-eKcHvRm1CIEwi-tHkzI4 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:46:53.5261313+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9290cbb2-6b7d-4c43-baa1-e84801e4406f\"\r\n}" headers: cache-control: - no-cache @@ -7635,7 +7783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:01:07 GMT + - Tue, 24 Feb 2026 04:47:55 GMT expires: - '-1' pragma: @@ -7649,13 +7797,13 @@ interactions: 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/6f9ddeb8-a8b9-4139-996b-c86c317fc330 + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e382d18f-8099-46f0-9755-1c1246403be4 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: AC5ACC0539F44B349926889F7A0FBCD1 Ref B: SG2AA1040512052 Ref C: 2026-02-16T01:01:08Z' + - 'Ref A: 72D26BE8BB064BA18E493BCC128DA5E6 Ref B: SG2AA1040512054 Ref C: 2026-02-24T04:47:54Z' status: code: 200 message: '' @@ -7675,12 +7823,12 @@ interactions: User-Agent: - AZURECLI/2.83.0 azsdk-python-core/1.38.0 Python/3.12.10 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ca60f3a-8d78-43fc-8366-355be910a971?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639068004372947978&c=MIIHpTCCBo2gAwIBAgITfwaYHapxdJBcIqiD1AAEBpgdqjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjYwMTMxMDkxODAyWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALHFpjEBIXWMhQOiHOTbv55matrm0tZYyloWmmS_tJSCq097ZSvJU0BR7VmEW3cRyWlWPqy-Y_Iiv8RkMiTK-p4BKIEni6jzkuI8cF_IHgVEsizrFgKLALQn35hqgYOzg-eGi6ttiugp_X0qxMfwh5LoLP3940Swui8P0gdfk-OxOwBypK7ARR64nzvtKI6mBqHFUYy-Sh1oTYZ0sR0eHIwiuyU7HjNvLTlev2nzF_OBDojrdEXeMccFcmlsgRdZgMvHunAuRddAJbKNtT4AcKsFE6IGeE8n5XPVui9DjuPcrqmr4nPdXaOkj98zNPfX0OGxO6uqLmbS4Oi-Q3JfVukCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPGTvbev6HwSNvumaLlxdrGkqGYjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAAfEFSuiwBaI6V62kb-SozI8uwSfIhRlSdXpf3iJZpzh-v_1aCd5vpQpJ_1sQxs1AYyJcFRQ87U_jj-IHImE8mWCadnBTG-Ms3EsgI7L8INPtprIbPa1HrzyFq3YI6bojkySeQgAqC_1kZ7OdYuOK4-GnGefZb6SyuM_HGtQYIvkR0RpaDhOCYpStYHHcX1oNNlh0Bm-_E-PjN4qsJ67riEGKkyf3DdYREo_v0Jb1pXGcMeijiNLhq4pad8Bg_xhGNwx0R394ZPbJH34y6a7CXc4ZNk1InmiCLfMO0QtXGJuVDpw8HoHlfW_VehuQryfVTqvhri4BPzOJy1iPSU40cg&s=bY1g4OJHUXmwkpBqiYDq-ZQGiUhwEF0TCSqASUDgMCiJ-6stBngtqGE8Hs-EZHOK0Vx5h7yHSE4v30SpCVp3tSdUnFNF4eTlXoOQDraRbna3BQ6PVfIm6qXVaAHRRmTVkLtP2ftfWjewgK_-pTSoF4UMRq-WgHQyiG5FoJLfSRE1BQ3IvJ6VlBsChMcavvpwFxM44qaWHLEpBDqLACC3KL6ritgbX1hnAtQfyJNKx-aNwTpf1CYBtLs_g5FqHKrdqvWLZfUQr6TtfEyh1AUrN_LTYRYpefkcmcldzaZS5qLS1dqU-lCKxDA_I4Ug6yqmg48SqPRI-B_M_t6uVKxEDg&h=GY17odnMuQHQJUQbnbDd5R4UY1BSfXBspARN9JL0gJs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/9290cbb2-6b7d-4c43-baa1-e84801e4406f?p=ac343211-fdb3-4ef9-aebf-3295dda24268&api-version=2024-11-01&t=639075052136726805&c=MIIHhzCCBm-gAwIBAgITHgf_SDN0U0Mca1SI0QAAB_9IMzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjYwMjE5MDYyODQwWhcNMjYwNTI0MjI1NzAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3gBluMdrlD6ardxpqPmBSYIWUZhonBiNzi4-_Vw3g3Oro9RIUs6ZgPPueDGitorH-JQTqF81P_5QS92kcH5lXb6doPV1q_erI_e20ynOSwv5jOpwnB8O1qCCtpY__wHr-QcB0Lm4K2jLBpKfwOLTZXA5H1VEKxDXmEWP-EQELhaFdVIeJT0qwvEmhDGKnNn1-T2y6yZrYJaboDSEK8AB9KXc3mWLIwh8_G9twTikTy2PuHSzGUy9QLpQMImh2VVk5Ry0Pfpaypw8fNupz4-WjXfVayKHDyMN5Sbe7kFmbdxnISJ2hOyPiNlGB5nUXpHRpMys37mof_UwKdRJcixQECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSpvSUr5SOrbw_81Q-45DGZEMcVRTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKPjOlpIFqUJhjTDyaKZju7P26-JxO3YKxxpiuONQQggB8Pfq85rCh4TYMRHTRF9-SaF8UFmfyVp5MKCn4fUJyrYkEfjqrWoLand203HijTSRlrvcI7H4LdCBUE4oWD21md4XzcNZ61hmhlg0z_LvEFluaWR6FJJgORgK2V5zkvf8GxYZY8SiUSX0FogWYQc0rgwrb9F3zZBApnguvbEEAfZWGixBF7eZX5U89oac2ZpJ6yt5mIyLIWUbKqOIqoTVE7ZWq0g-rZNF6SxzSWnEzmKCIVtHC_4lvCAtexAJWshMLjYvNKYi9WTvrrtCKixbaK9Y4uLtPGLUgNVtMFnJIc&s=gqgc3CORiR0K4vPrpPJ85UeLzpsInqMP2auZfyfjyiBZa6FMZCIph5Uz9eBb1VWoD9246vKMuXfcxSf6sbPEktLQz6x7ZkZ8sJ3Xw4ZzFC7tX7UfX3lAvgy-NL2QPojUCDGu9CspY0MCM-zTN5rPRj7X_apjhLHT0hoDjUHb-pmdl3IX0x_Zi37Uof-SaVxnHjig0ciI79Krhv4oeayaYq0RnUvB6LXLljQiBM8qwpdN8eLaJTDqm9NSXvBUBv5nOHh4aQCD2TuhWMJqKbO0hGocXX--HpoW4wPzYiJC1aYgrM6bn-agktkTu4Qrd2GE7FUCUtjmGjMkx0YmHBMC0Q&h=6mW7oUDkeFfK5q38KXNDUA-eKcHvRm1CIEwi-tHkzI4 response: body: - string: "{\r\n \"startTime\": \"2026-02-16T01:00:37.1242856+00:00\",\r\n \"endTime\": - \"2026-02-16T01:01:37.6719429+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0ca60f3a-8d78-43fc-8366-355be910a971\"\r\n}" + string: "{\r\n \"startTime\": \"2026-02-24T04:46:53.5261313+00:00\",\r\n \"endTime\": + \"2026-02-24T04:48:04.0255348+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9290cbb2-6b7d-4c43-baa1-e84801e4406f\"\r\n}" headers: cache-control: - no-cache @@ -7689,7 +7837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:01:38 GMT + - Tue, 24 Feb 2026 04:48:25 GMT expires: - '-1' pragma: @@ -7703,13 +7851,13 @@ interactions: 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/a51f11d3-c691-4002-9b58-130b652d885b + - tenantId=4b71fe15-44c6-47b7-94ac-5a6b2cc290e9,objectId=fe51c4e5-d60c-4818-a8d9-80928d053b7b/southeastasia/e8d94eb4-7d27-460c-99b1-53d8a16afe5b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: EACCBD152CB24B91B7FB3EE6499F8943 Ref B: SG2AA1040519060 Ref C: 2026-02-16T01:01:38Z' + - 'Ref A: 21A1034FE5664D1C97B083E3D3F1B7F3 Ref B: SG2AA1070305031 Ref C: 2026-02-24T04:48:25Z' status: code: 200 message: '' @@ -7794,7 +7942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:01:39 GMT + - Tue, 24 Feb 2026 04:48:26 GMT expires: - '-1' pragma: @@ -7808,11 +7956,11 @@ interactions: x-ms-need-to-refresh-epl-cache: - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 3B6C8711055E41BF89290ED2B22E1DB7 Ref B: SG2AA1070306052 Ref C: 2026-02-16T01:01:39Z' + - 'Ref A: 218AC4AA76194329A6B82B904FE5BDDC Ref B: SG2AA1040515040 Ref C: 2026-02-24T04:48:25Z' status: code: 200 message: '' @@ -7839,13 +7987,13 @@ interactions: \ \"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\": \"8222b02a-9f0f-4d59-838c-fa05bd45efe0\",\r\n \"storageProfile\": + \ \"vmId\": \"efcda4a8-eba8-4c8b-82e1-2b96dcdfc082\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202109281\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_f8d24c9930\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstoragef8d24c9930c000.blob.core.windows.net/vhds/osdisk_f8d24c9930.vhd\"\r\n + \"osdisk_1ba6527fae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testdiagvm\",\r\n @@ -7855,7 +8003,7 @@ interactions: \ \"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_vmss_diagnostics_extension000001/providers/Microsoft.Network/networkInterfaces/testdiagvmVMNic\"}]},\r\n - \ \"timeCreated\": \"2026-02-16T00:56:55.7306643+00:00\"\r\n },\r\n \"etag\": + \ \"timeCreated\": \"2026-02-24T04:42:47.1218745+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"LinuxDiagnostic\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_vmss_diagnostics_extension000001/providers/Microsoft.Compute/virtualMachines/testdiagvm/extensions/LinuxDiagnostic\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": @@ -7919,7 +8067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Feb 2026 01:01:40 GMT + - Tue, 24 Feb 2026 04:48:27 GMT etag: - '"2"' expires: @@ -7935,11 +8083,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;23995,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: DE995CEDE9EB439DBEDF9EE532CEF7D4 Ref B: SG2AA1070302054 Ref C: 2026-02-16T01:01:40Z' + - 'Ref A: 815D1BE697D84900A9F4DC1EA7A13C92 Ref B: SG2AA1070304040 Ref C: 2026-02-24T04:48:26Z' status: code: 200 message: ''