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 b877eaa499e..48bb1183ab9 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/commands.py @@ -320,7 +320,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 ed36cbfb759..de5c63c420b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2291,30 +2291,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 VmExtensionDelete + vm = get_instance_view(cmd, resource_group_name, vm_name) + 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.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 = VmExtensionDelete(cli_ctx=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): 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..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 @@ -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-24T04:39:50Z","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 + - 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: 1FDBBA1799EA47E0AC936E0351D8337E Ref B: TYO201100114035 Ref C: 2024-08-26T08:11:37Z' + - 'Ref A: 05D7042CAD204B52B75A1FC9F4CF45F8 Ref B: SG2AA1040513034 Ref C: 2026-02-24T04:40:16Z' 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 + - Tue, 24 Feb 2026 04:40:17 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/e8d7ab6e-2246-4516-9d97-54a9968af4b2 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43937 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43977 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: 49F4E984DD5E4386A1B54567827579D2 Ref B: SG2AA1040517034 Ref C: 2026-02-24T04:40:17Z' 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 + - Tue, 24 Feb 2026 04:40:19 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/a7b5b97d-20a1-4a4f-9ac4-9110660a594c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73962 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,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: 3453469DA7FE4567A46D9D98462E2734 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:40:17Z' 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 + - Tue, 24 Feb 2026 04:40:19 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: 922EE6AB0DD346B0B76380798212B522 Ref B: SG2AA1040518054 Ref C: 2026-02-24T04:40:19Z' 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 + - Tue, 24 Feb 2026 04:40:20 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/d0827a9f-de78-454a-80fc-49a811acda1c x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15980,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43936 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43976 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: 93984F7B2A434E1AA1D50E2AA37D4491 Ref B: SG2AA1070306040 Ref C: 2026-02-24T04:40:20Z' 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 + - Tue, 24 Feb 2026 04:40:22 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/501341b2-560a-466d-875b-a15da5b50167 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73961 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,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: 40A5487A4F0045C7BCEEAB6AFED773F8 Ref B: SG2AA1070303054 Ref C: 2026-02-24T04:40:21Z' 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 + - Tue, 24 Feb 2026 04:40:23 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/c113c323-286f-46d9-ad04-c3ed5b43c71a x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15979,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43975 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: 5A36C538180B4A8F908ABC7D07AFC5B1 Ref B: SG2AA1040513034 Ref C: 2026-02-24T04:40:22Z' 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 + - Tue, 24 Feb 2026 04:40:23 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/44902b9a-27d5-43ba-be3b-6680da41b375 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73960 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,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: 396D8DD62E5147BFB19314E5B76D748F Ref B: SG2AA1070306036 Ref C: 2026-02-24T04:40:23Z' 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": "testd3e06", "adminUsername": "user11", "adminPassword": "[parameters(''adminPassword'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "testdcd94Nic", "properties": {"ipConfigurations": [{"name": "testdcd94IPConfig", + [{"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'', ''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,30 +516,30 @@ 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_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_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_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, 26 Aug 2024 08:11:51 GMT + - Tue, 24 Feb 2026 04:40:33 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: 01DB469C4F61462A891B9216E912D3E2 Ref B: SG2AA1070305052 Ref C: 2026-02-24T04:40:23Z' status: code: 201 message: Created @@ -556,11 +574,58 @@ 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.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":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Feb 2026 04:40:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 257FE839AAAE42D6AFBB84135A6FE935 Ref B: SG2AA1070303054 Ref C: 2026-02-24T04:40:34Z' + 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.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/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"}' @@ -572,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:11:52 GMT + - Tue, 24 Feb 2026 04:41:05 GMT expires: - '-1' pragma: @@ -586,7 +651,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: 071B0FDF8F3446B9AB88D34EA7BDF4BA Ref B: SG2AA1070306023 Ref C: 2026-02-24T04:41:05Z' status: code: 200 message: OK @@ -603,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/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"}' @@ -619,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:23 GMT + - Tue, 24 Feb 2026 04:41:37 GMT expires: - '-1' pragma: @@ -633,7 +698,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: 23F2F833A1D8465BB7A77F255290C971 Ref B: SG2AA1040520023 Ref C: 2026-02-24T04:41:36Z' status: code: 200 message: OK @@ -650,11 +715,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/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"}' @@ -666,7 +731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:54 GMT + - Tue, 24 Feb 2026 04:42:08 GMT expires: - '-1' pragma: @@ -680,7 +745,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: 949DD6049C6D4F9F903752FF773C7761 Ref B: SG2AA1070301031 Ref C: 2026-02-24T04:42:08Z' status: code: 200 message: OK @@ -697,23 +762,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?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_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, 26 Aug 2024 08:12:55 GMT + - Tue, 24 Feb 2026 04:42:08 GMT expires: - '-1' pragma: @@ -727,7 +792,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: BBFE5F34884546F7A6EEF04EDC95DD02 Ref B: SG2AA1040518054 Ref C: 2026-02-24T04:42:08Z' status: code: 200 message: OK @@ -744,23 +809,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-24T04:39:50Z","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 + - Tue, 24 Feb 2026 04:42:09 GMT expires: - '-1' pragma: @@ -774,7 +839,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: 6B4EA920691846B29882AE5E627060FD Ref B: SG2AA1070301052 Ref C: 2026-02-24T04:42:09Z' status: code: 200 message: OK @@ -791,25 +856,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 + - Tue, 24 Feb 2026 04:42:10 GMT expires: - '-1' pragma: @@ -820,12 +888,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/0adfdb6b-bc8c-46db-9e9c-5909430e8b30 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43929 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43973 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: 9803A23668BA4CCB8D429277DB40CFD4 Ref B: SG2AA1040516031 Ref C: 2026-02-24T04:42:09Z' status: code: 200 message: OK @@ -842,37 +912,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 + - Tue, 24 Feb 2026 04:42:11 GMT expires: - '-1' pragma: @@ -883,12 +952,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/da074687-6476-4b35-896d-5549c7a8ba8a 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: B129EB879D6F4994B8B8A90A54990135 Ref B: SG2AA1070303060 Ref C: 2026-02-24T04:42:10Z' status: code: 200 message: OK @@ -905,23 +976,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-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 content-length: - - '1361' + - '1399' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:12:59 GMT + - Tue, 24 Feb 2026 04:42:11 GMT expires: - '-1' pragma: @@ -932,10 +1003,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-original-request-ids: + - 27ef98e0-e81a-475a-af13-30f8ba07036a 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: EB0293A1F04E40418AD0046111E5CAC9 Ref B: SG2AA1040518029 Ref C: 2026-02-24T04:42:12Z' status: code: 200 message: OK @@ -952,14 +1025,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 +1040,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 +1052,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 +1064,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 +1076,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 +1088,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 +1219,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 +1230,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 +1241,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 +1283,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 +1354,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 +1375,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 +1386,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 +1397,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 +1408,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 +1419,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 +1430,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 +1451,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 +1462,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 +1514,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 +1535,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 +1796,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 +1838,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 +1870,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 +1912,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 +1923,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 +1934,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 +1945,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 +1966,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 +1977,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 +1988,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 +1999,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 +2010,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 +2021,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 +2032,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 +2064,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 +2086,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 +2108,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 +2119,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 +2381,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 +2392,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 +2413,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 +2424,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 +2445,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 + - Tue, 24 Feb 2026 04:42:12 GMT expires: - '-1' pragma: @@ -2286,7 +2614,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: 5F1729257F4A48518E732B24F8EF7D70 Ref B: SG2AA1040518029 Ref C: 2026-02-24T04:42:12Z' status: code: 200 message: OK @@ -2303,9 +2631,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 +2649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:01 GMT + - Tue, 24 Feb 2026 04:42:13 GMT expires: - '-1' pragma: @@ -2335,7 +2663,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: 28017A2DC213453F9F6DC354D2E25EAB Ref B: SG2AA1040513023 Ref C: 2026-02-24T04:42:14Z' status: code: 404 message: Not Found @@ -2352,25 +2680,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 + - Tue, 24 Feb 2026 04:42:14 GMT expires: - '-1' pragma: @@ -2381,12 +2712,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/eacb0a9e-9862-438f-8d15-c3f0daba527e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43928 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43972 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: 8EB3E1D16E524AB595532353D43DD13A Ref B: SG2AA1070302062 Ref C: 2026-02-24T04:42:14Z' status: code: 200 message: OK @@ -2403,37 +2736,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 + - Tue, 24 Feb 2026 04:42:15 GMT expires: - '-1' pragma: @@ -2444,12 +2776,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/2406693b-81f4-4631-98a8-7bec2009ba6a 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: 497A3C0B9BFC4FC5A88BEEB6570A93F3 Ref B: SG2AA1070304025 Ref C: 2026-02-24T04:42:15Z' status: code: 200 message: OK @@ -2466,25 +2800,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 + - Tue, 24 Feb 2026 04:42:16 GMT expires: - '-1' pragma: @@ -2495,12 +2832,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/987b76b5-331c-4762-83e7-a6ab2b74afc1 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15981,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43927 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971 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: 2CC403B47AC9415ABEF95B402E016945 Ref B: SG2AA1040516023 Ref C: 2026-02-24T04:42:16Z' status: code: 200 message: OK @@ -2517,37 +2856,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 + - Tue, 24 Feb 2026 04:42:17 GMT expires: - '-1' pragma: @@ -2558,12 +2896,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/62ea16a5-491c-4bf6-924f-6540b540ae84 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: BA66A97C14B84EEA8978EEC09E081488 Ref B: SG2AA1040519060 Ref C: 2026-02-24T04:42:17Z' status: code: 200 message: OK @@ -2580,14 +2920,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 +2935,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 +2947,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 +2959,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 +2971,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 +2983,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 +3114,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 +3125,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 +3136,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 +3178,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 +3249,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 +3270,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 +3281,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 +3292,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 +3303,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 +3314,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 +3325,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 +3346,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 +3357,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 +3409,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 +3430,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","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 +3691,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 +3733,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 +3765,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 +3807,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 +3818,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 +3829,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 +3840,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 +3861,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 +3872,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 +3883,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 +3894,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 +3905,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 +3916,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 +3927,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 +3959,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 +3981,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 +4003,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 +4014,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 +4276,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 +4287,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 +4308,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 +4319,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 +4340,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 + - Tue, 24 Feb 2026 04:42:19 GMT expires: - '-1' pragma: @@ -3914,7 +4509,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: 02BEC3DF31A54F0187D50A8FEA752D4F Ref B: SG2AA1040517036 Ref C: 2026-02-24T04:42:18Z' status: code: 200 message: OK @@ -3931,11 +4526,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 +4544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:08 GMT + - Tue, 24 Feb 2026 04:42:20 GMT expires: - '-1' pragma: @@ -3963,7 +4558,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: CE11873FCE42452CBB5928610B0FE027 Ref B: SG2AA1040513062 Ref C: 2026-02-24T04:42:19Z' status: code: 404 message: Not Found @@ -3971,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": "vhdstorage79e96c4e4cf806", + [{"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": {}, @@ -3989,16 +4584,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/vhdstorage1ba6527faed599", "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_1ba6527fae", "caching": "ReadWrite", "vhd": {"uri": + "https://vhdstorage1ba6527faed599.blob.core.windows.net/vhds/osdisk_1ba6527fae.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 +4607,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_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_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_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: - - '3021' + - '3022' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Tue, 24 Feb 2026 04:42:21 GMT expires: - '-1' pragma: @@ -4047,13 +4642,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: F1015AF271FE4409A2ED3119820C9EF3 Ref B: SG2AA1040520060 Ref C: 2026-02-24T04:42:20Z' status: code: 201 message: Created @@ -4070,11 +4665,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/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.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/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"}' @@ -4086,7 +4728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:13 GMT + - Tue, 24 Feb 2026 04:42:54 GMT expires: - '-1' pragma: @@ -4100,7 +4742,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: 1402D6D3B4544A24B8B52661B4BE6170 Ref B: SG2AA1040518036 Ref C: 2026-02-24T04:42:53Z' status: code: 200 message: OK @@ -4117,11 +4759,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/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"}' @@ -4133,7 +4775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:13:44 GMT + - Tue, 24 Feb 2026 04:43:24 GMT expires: - '-1' pragma: @@ -4147,7 +4789,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: 908C5114F3724950A48505CD074AF60A Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:43:24Z' status: code: 200 message: OK @@ -4164,11 +4806,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/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"}' @@ -4180,7 +4822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:14 GMT + - Tue, 24 Feb 2026 04:43:55 GMT expires: - '-1' pragma: @@ -4194,7 +4836,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: 89FB73B0379F4C8CA8316A9173CC4307 Ref B: SG2AA1070304060 Ref C: 2026-02-24T04:43:55Z' status: code: 200 message: OK @@ -4211,23 +4853,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_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: - - '4149' + - '4151' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:15 GMT + - Tue, 24 Feb 2026 04:43:55 GMT expires: - '-1' pragma: @@ -4239,9 +4881,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: 0311433D580F4769882B3B76130ECAD6 Ref B: SG2AA1070302054 Ref C: 2026-02-24T04:43:55Z' status: code: 200 message: OK @@ -4258,63 +4900,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\": \"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_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 + \ \"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-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-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-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-24T04:42:47.1218745+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 + - Tue, 24 Feb 2026 04:43:56 GMT expires: - '-1' pragma: @@ -4325,15 +4965,17 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;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: 31F7CE12813940729281FAFF9179E0BC Ref B: SG2AA1070302042 Ref C: 2026-02-24T04:43:56Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -4347,50 +4989,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/\"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 content-length: - - '2597' + - '2152' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:17 GMT + - Tue, 24 Feb 2026 04:43:56 GMT etag: - - W/"959601a4-409b-44f0-bc03-a00a67a9600f" + - W/"df5c8f30-0c17-41d0-9d15-30b06be9d775" expires: - '-1' pragma: @@ -4402,14 +5019,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9609c5f2-f5dd-4359-a669-32464c554b03 + - 4920a530-57b3-4356-9ae3-321af60e63ea 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: 8304724ECB29478083A76F7D70F95A9C Ref B: SG2AA1070305042 Ref C: 2026-02-24T04:43:56Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4423,35 +5040,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/\"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: - - '990' + - '853' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:18 GMT + - Tue, 24 Feb 2026 04:43:57 GMT etag: - - W/"9f676f03-ca1c-4234-ab55-731ea9ba5925" + - W/"8641546d-0037-471a-94a4-a879ffd052b6" expires: - '-1' pragma: @@ -4463,14 +5070,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41c3f39b-5537-4307-9004-2247a26f1313 + - cb743819-7cc0-499d-987f-d73da6808cf9 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3748' x-msedge-ref: - - 'Ref A: 4495444499894E9880DEA7FAD6E681FF Ref B: TYO201100117037 Ref C: 2024-08-26T08:14:18Z' + - 'Ref A: 6F3BA124E34242748F215521CC488401 Ref B: SG2AA1070302042 Ref C: 2026-02-24T04:43:57Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4485,30 +5092,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/\"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 content-length: - - '905' + - '761' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:20 GMT + - Tue, 24 Feb 2026 04:44:01 GMT etag: - - W/"effc6369-6b0b-4048-8e5e-6b37bf66f6d2" + - W/"35f2da69-d029-4c29-9038-a49df7728ba0" expires: - '-1' pragma: @@ -4520,14 +5120,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d6d771a9-a566-46a7-ac36-190defdfc219 + - cbbdfd2e-b7c0-4110-8e58-ccc2f218cf82 + x-ms-operation-identifier: + - 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: B9DCBC90C19849049E42738BA9C8A8B2 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: CCDFFEDD599C448E89E967B2370687F3 Ref B: SG2AA1070304040 Ref C: 2026-02-24T04:44:00Z' 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 +5151,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/\"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/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/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: - - '910' + - '759' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Tue, 24 Feb 2026 04:44:01 GMT expires: - '-1' pragma: @@ -4587,16 +5181,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c99eca04-a1d3-4d01-9464-b5cda1573fda + - 73220d38-c3e8-4c00-acb2-edb433b9840e + x-ms-operation-identifier: + - 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: 242F0D5AFE794D64BF588419C1803E2A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:20Z' + - 'Ref A: FE84B627F65F47C9AC11457868266E4B Ref B: SG2AA1070301060 Ref C: 2026-02-24T04:44:01Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4611,21 +5207,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/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: "{\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 + - Tue, 24 Feb 2026 04:44:02 GMT expires: - '-1' pragma: @@ -4637,14 +5233,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4b30d81-bd4a-4869-931d-81cef2d6605f + - 5d5f0d44-7c67-49c9-8682-d93d76d80c47 + x-ms-operation-identifier: + - 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: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: EC4EBFDA4D1F4BB98E79DBC73C5F4CA9 Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: A0EFCCA9A1FF457FA846CB81A86B61D3 Ref B: SG2AA1040516060 Ref C: 2026-02-24T04:44:01Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4659,31 +5257,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/\"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 content-length: - - '942' + - '791' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:21 GMT + - Tue, 24 Feb 2026 04:44:03 GMT etag: - - W/"2957582c-0256-49f1-b6cf-7fc19bdaa0a7" + - W/"3bce5e65-6300-414b-8476-a573914e72ee" expires: - '-1' pragma: @@ -4695,14 +5285,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0dbaa8c8-2f78-442b-b952-0b790e81e5a0 + - e86f1f76-2340-403d-9c12-18410cf86453 + x-ms-operation-identifier: + - 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: - - '3747' + - '3749' x-msedge-ref: - - 'Ref A: 4929CDD15DFE4223A69ED60E5FAA793A Ref B: TYO201100116035 Ref C: 2024-08-26T08:14:21Z' + - 'Ref A: 4C71C79540DD49C984F2DD8B286F6EE5 Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:44:02Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -4717,52 +5309,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\": \"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\": + 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\":\"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\": + \"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 content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Tue, 24 Feb 2026 04:44:04 GMT etag: - '"3"' expires: @@ -4775,15 +5359,17 @@ 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: FDE04A2DEA664783A9E06A61FA58DAA1 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:44:03Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -4798,52 +5384,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\": \"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\": + 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\":\"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\": + \"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 content-length: - - '2764' + - '2762' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:22 GMT + - Tue, 24 Feb 2026 04:44:04 GMT etag: - '"3"' expires: @@ -4856,27 +5434,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: F66EF68DB22D42E794CBCAE322858409 Ref B: SG2AA1040516031 Ref C: 2026-02-24T04:44:04Z' 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": "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": - "testdcd94Nic", "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": "testdcd94IPConfig", + "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"}]}}], @@ -5045,238 +5625,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\": \"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\": + 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\":\"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\": + \"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-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + 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/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/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: - - '14898' + - '14896' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:28 GMT + - Tue, 24 Feb 2026 04:44:06 GMT etag: - '"4"' expires: @@ -5289,6 +5739,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/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: @@ -5298,10 +5752,10 @@ interactions: x-ms-request-charge: - '0' x-msedge-ref: - - 'Ref A: 103943B15FA5468C801437723F8A3A9A Ref B: TYO201151004029 Ref C: 2024-08-26T08:14:23Z' + - 'Ref A: 9B7CB560B68F46E0B1FB6EE4992F9D96 Ref B: SG2AA1040512062 Ref C: 2026-02-24T04:44:05Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5316,14 +5770,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/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\": \"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-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 @@ -5332,7 +5786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Tue, 24 Feb 2026 04:44:06 GMT expires: - '-1' pragma: @@ -5343,15 +5797,19 @@ 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/0dea5b0d-a1e8-4ed1-bf52-7e5e5ffba35e x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14971 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 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: E3F4E19D9EE2439FA0FEFDB7982D6AA9 Ref B: SG2AA1070301052 Ref C: 2026-02-24T04:44:06Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5366,228 +5824,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\": \"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\": + 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\":\"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\": + \"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-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + 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: - no-cache content-length: - - '14899' + - '14897' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:29 GMT + - Tue, 24 Feb 2026 04:44:07 GMT etag: - '"4"' expires: @@ -5600,12 +5928,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: 96E2E5C02D8C4F9D90833DA2C07CC61C Ref B: SG2AA1040520042 Ref C: 2026-02-24T04:44:07Z' status: code: 200 message: '' @@ -5627,7 +5957,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 +5967,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/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, 26 Aug 2024 08:14:31 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/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/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: @@ -5656,6 +5986,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/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: @@ -5665,10 +5999,10 @@ interactions: x-ms-request-charge: - '2' x-msedge-ref: - - 'Ref A: 6BB24265EBFC49CDB7CC08F629A4E2AB Ref B: TYO201151005029 Ref C: 2024-08-26T08:14:31Z' + - 'Ref A: A841FDB681974B219D2862E2D178CAD0 Ref B: SG2AA1070305036 Ref C: 2026-02-24T04:44:08Z' status: code: 202 - message: '' + message: Accepted - request: body: null headers: @@ -5683,14 +6017,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/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\": \"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-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 @@ -5699,7 +6032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:14:31 GMT + - Tue, 24 Feb 2026 04:44:08 GMT expires: - '-1' pragma: @@ -5710,15 +6043,72 @@ 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/e542d85e-1213-453b-8292-28dacde49e9d x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14970 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 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: 6F238C5989DE4AA0A84CB81847BD5400 Ref B: SG2AA1040517034 Ref C: 2026-02-24T04:44:08Z' status: code: 200 - message: '' + message: OK +- 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/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-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 + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 24 Feb 2026 04:44:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' + x-ms-operation-identifier: + - 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: 19982EC26BFF47E6944A8297D589873C Ref B: SG2AA1070301042 Ref C: 2026-02-24T04:44:39Z' + status: + code: 200 + message: OK - request: body: null headers: @@ -5733,14 +6123,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/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\": \"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-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 @@ -5749,7 +6138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:01 GMT + - Tue, 24 Feb 2026 04:45:10 GMT expires: - '-1' pragma: @@ -5760,12 +6149,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/992f0d19-0330-47a6-ba3e-4b74f8b30528 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: AC5C826E4AE246AEB41AB81D6A363AB5 Ref B: SG2AA1070305023 Ref C: 2026-02-24T04:45:10Z' status: code: 200 message: '' @@ -5783,14 +6176,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/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\": \"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-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 @@ -5799,7 +6192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:31 GMT + - Tue, 24 Feb 2026 04:45:41 GMT expires: - '-1' pragma: @@ -5810,15 +6203,19 @@ 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/5ca62dd4-7658-4c15-8a6a-9e08495a091e 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: 81D2E40F3374402DBABB5572CDA1EA35 Ref B: SG2AA1070306062 Ref C: 2026-02-24T04:45:41Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5833,9 +6230,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/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: '' @@ -5845,7 +6242,7 @@ interactions: content-length: - '0' date: - - Mon, 26 Aug 2024 08:15:32 GMT + - Tue, 24 Feb 2026 04:45:42 GMT expires: - '-1' pragma: @@ -5856,15 +6253,19 @@ 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/7d4e8dcd-b846-40a9-bc29-5fb585d4c705 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: 45A6C3E689334487A9BF55208CAD0189 Ref B: SG2AA1040519034 Ref C: 2026-02-24T04:45:42Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -5879,228 +6280,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\": \"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\": + 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\":\"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\": + \"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-24T04:44:05.8556878+00:00\"\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + 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: - no-cache content-length: - - '14899' + - '14897' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:33 GMT + - Tue, 24 Feb 2026 04:45:44 GMT etag: - '"6"' expires: @@ -6113,12 +6384,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: DF3766AB1392497A9D212A074C55DF57 Ref B: SG2AA1040517054 Ref C: 2026-02-24T04:45:43Z' status: code: 200 message: '' @@ -6136,63 +6409,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\": \"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_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 + \ \"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-24T04:45:36+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-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-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-24T04:42:47.1218745+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 + - Tue, 24 Feb 2026 04:45:44 GMT expires: - '-1' pragma: @@ -6203,23 +6472,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: 6E1DF6B86E1A41E0897FF6E601DA1CD8 Ref B: SG2AA1070304060 Ref C: 2026-02-24T04:45:44Z' 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 +6635,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 +6653,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/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: @@ -6574,7 +6724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Tue, 24 Feb 2026 04:45:45 GMT expires: - '-1' pragma: @@ -6585,6 +6735,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/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: @@ -6592,7 +6746,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: E04F9D83E47740BEAB2FD59FD212847A Ref B: SG2AA1070305031 Ref C: 2026-02-24T04:45:45Z' status: code: 201 message: '' @@ -6610,14 +6764,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/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\": \"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-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 @@ -6626,7 +6779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:15:37 GMT + - Tue, 24 Feb 2026 04:45:47 GMT expires: - '-1' pragma: @@ -6637,15 +6790,19 @@ 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/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: CE73648E79684D5A9F45271B883055FE Ref B: TYO201100115021 Ref C: 2024-08-26T08:15:37Z' + - 'Ref A: CBEE5CF56787499AA1EF8CBE27E141BB Ref B: SG2AA1040520025 Ref C: 2026-02-24T04:45:46Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6660,14 +6817,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/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\": \"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-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 @@ -6676,7 +6833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:07 GMT + - Tue, 24 Feb 2026 04:46:17 GMT expires: - '-1' pragma: @@ -6687,12 +6844,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/29554cf2-bdf6-460a-917b-02b3281b3cb8 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: 0D2C539279654311A7AEF09AAE53B530 Ref B: SG2AA1070301023 Ref C: 2026-02-24T04:46:17Z' status: code: 200 message: '' @@ -6710,187 +6871,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 +6938,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:08 GMT + - Tue, 24 Feb 2026 04:46:17 GMT expires: - '-1' pragma: @@ -6910,15 +6949,17 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;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: 1ADB8DEBFFA14DE0BDCF68CBE2F97DAA Ref B: SG2AA1070304029 Ref C: 2026-02-24T04:46:18Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -6933,265 +6974,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\": \"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_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 + \ \"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-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_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-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\": + [\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-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-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-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-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\": + \"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 + - Tue, 24 Feb 2026 04:46:19 GMT expires: - '-1' pragma: @@ -7202,12 +7115,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: E2706AECDE274126A939BABD0E44F778 Ref B: SG2AA1070301054 Ref C: 2026-02-24T04:46:18Z' status: code: 200 message: '' @@ -7215,7 +7130,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7227,7 +7142,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 +7152,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/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, 26 Aug 2024 08:16:10 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/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/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: @@ -7256,14 +7171,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/3fb0b16b-bc77-4cd7-aea5-0cc08513bb59 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: 1D7E1FBE2DC04C0F9FDD75334E270BA1 Ref B: SG2AA1040518036 Ref C: 2026-02-24T04:46:19Z' status: code: 202 message: '' @@ -7281,23 +7200,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/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\": \"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-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 content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:11 GMT + - Tue, 24 Feb 2026 04:46:20 GMT expires: - '-1' pragma: @@ -7308,12 +7226,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/fa3e01eb-f307-4720-b08a-6deee07b2070 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: 0F4EEBC8F9484D2EA99D94F5A537D222 Ref B: SG2AA1040519029 Ref C: 2026-02-24T04:46:20Z' status: code: 200 message: '' @@ -7331,23 +7253,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/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\": \"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-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 content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:41 GMT + - Tue, 24 Feb 2026 04:46:51 GMT expires: - '-1' pragma: @@ -7358,12 +7280,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/dae41e47-e4fb-405d-b1c7-01c369a4686d 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: 8EC35A57CBF5484D9AC1E8472A486A1D Ref B: SG2AA1070305040 Ref C: 2026-02-24T04:46:51Z' status: code: 200 message: '' @@ -7381,63 +7307,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\": \"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_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 + \ \"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-24T04:46:29+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-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-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-24T04:42:47.1218745+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 + - Tue, 24 Feb 2026 04:46:52 GMT expires: - '-1' pragma: @@ -7448,23 +7370,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;23997,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: C4F3981D6D0A41D897AF9163F335786B Ref B: SG2AA1040516052 Ref C: 2026-02-24T04:46:52Z' 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 +7533,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 +7551,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/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: @@ -7819,7 +7622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Tue, 24 Feb 2026 04:46:53 GMT expires: - '-1' pragma: @@ -7830,14 +7633,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/c42c916e-5e3c-48d3-b010-1ebd65c210d7 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: 424FEC38C17643C8BDEC6C200BBD139F Ref B: SG2AA1070304054 Ref C: 2026-02-24T04:46:52Z' status: code: 201 message: '' @@ -7855,14 +7662,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/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\": \"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-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 @@ -7871,7 +7677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:16:44 GMT + - Tue, 24 Feb 2026 04:46:53 GMT expires: - '-1' pragma: @@ -7882,12 +7688,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/southeastasia/a043844a-3ddb-4113-a532-ac341710bca3 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: - - '3748' + - '3749' + x-msedge-ref: + - '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: 6B804CD6EA3042E0BE563CCA431548D8 Ref B: TYO201100114023 Ref C: 2024-08-26T08:16:44Z' + - 'Ref A: 10D8C7B31E36414CA3E5281E31BA5325 Ref B: SG2AA1070304034 Ref C: 2026-02-24T04:47:24Z' status: code: 200 message: '' @@ -7905,14 +7768,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/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\": \"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-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 @@ -7921,7 +7783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:14 GMT + - Tue, 24 Feb 2026 04:47:55 GMT expires: - '-1' pragma: @@ -7932,12 +7794,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/e382d18f-8099-46f0-9755-1c1246403be4 x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14984 + - Microsoft.Compute/GetOperationResource;44,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: 72D26BE8BB064BA18E493BCC128DA5E6 Ref B: SG2AA1040512054 Ref C: 2026-02-24T04:47:54Z' status: code: 200 message: '' @@ -7955,14 +7821,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/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\": \"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-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 @@ -7971,7 +7837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:44 GMT + - Tue, 24 Feb 2026 04:48:25 GMT expires: - '-1' pragma: @@ -7982,12 +7848,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/e8d94eb4-7d27-460c-99b1-53d8a16afe5b x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + - Microsoft.Compute/GetOperationResource;43,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: 21A1034FE5664D1C97B083E3D3F1B7F3 Ref B: SG2AA1070305031 Ref C: 2026-02-24T04:48:25Z' status: code: 200 message: '' @@ -8005,187 +7875,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 +7942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 08:17:45 GMT + - Tue, 24 Feb 2026 04:48:26 GMT expires: - '-1' pragma: @@ -8205,12 +7953,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;23996,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: 218AC4AA76194329A6B82B904FE5BDDC Ref B: SG2AA1040515040 Ref C: 2026-02-24T04:48:25Z' status: code: 200 message: '' @@ -8228,221 +7978,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\": \"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_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 + \ \"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-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\": + \"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 + - Tue, 24 Feb 2026 04:48:27 GMT etag: - '"2"' expires: @@ -8455,12 +8080,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;23995,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: 815D1BE697D84900A9F4DC1EA7A13C92 Ref B: SG2AA1070304040 Ref C: 2026-02-24T04:48:26Z' 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 680c5400d88..d789df1c3b4 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')