From 33475936a6565c498d1bb63267e26aae6368f1b6 Mon Sep 17 00:00:00 2001 From: Yan Zhu Date: Mon, 23 Dec 2024 14:59:49 +0800 Subject: [PATCH 1/3] fix --- .../azure/cli/command_modules/vm/_template_builder.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py index 55744a55857..252479fbdb4 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py @@ -360,6 +360,8 @@ def _build_os_profile(): os_profile['secrets'] = secrets if enable_auto_update is not None and custom_image_os_type.lower() == 'windows': + if 'windowsConfiguration' not in os_profile: + os_profile['windowsConfiguration'] = {} os_profile['windowsConfiguration']['enableAutomaticUpdates'] = enable_auto_update # Windows patch settings @@ -368,6 +370,9 @@ def _build_os_profile(): raise ValidationError( 'Invalid value of --patch-mode for Windows VM. Valid values are AutomaticByOS, ' 'AutomaticByPlatform, Manual.') + + if 'windowsConfiguration' not in os_profile: + os_profile['windowsConfiguration'] = {} os_profile['windowsConfiguration']['patchSettings'] = { 'patchMode': patch_mode, 'enableHotpatching': enable_hotpatching From 92967ebb16d5013e49d7f63d286bc12a91528316 Mon Sep 17 00:00:00 2001 From: Yan Zhu Date: Mon, 23 Dec 2024 15:27:54 +0800 Subject: [PATCH 2/3] fix --- .../azure/cli/command_modules/vm/_template_builder.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py index 252479fbdb4..f189cee25c5 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py @@ -383,6 +383,9 @@ def _build_os_profile(): if patch_mode.lower() not in ['automaticbyplatform', 'imagedefault']: raise ValidationError( 'Invalid value of --patch-mode for Linux VM. Valid values are AutomaticByPlatform, ImageDefault.') + + if 'linuxConfiguration' not in os_profile: + os_profile['linuxConfiguration'] = {} os_profile['linuxConfiguration']['patchSettings'] = { 'patchMode': patch_mode } From d6bddde224427f159136ebd55341dbb9697e6e4f Mon Sep 17 00:00:00 2001 From: Yan Zhu Date: Thu, 26 Dec 2024 16:15:28 +0800 Subject: [PATCH 3/3] rerun test --- .../recordings/test_linux_vm_patch_mode.yaml | 3368 +++++++++-------- 1 file changed, 1852 insertions(+), 1516 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_linux_vm_patch_mode.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_linux_vm_patch_mode.yaml index b662c0ff7d6..59d33f86e81 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_linux_vm_patch_mode.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_linux_vm_patch_mode.yaml @@ -14,12 +14,12 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001","name":"cli_test_linux_vm_patch_mode_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_linux_vm_patch_mode","date":"2024-08-26T09:42:50Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001","name":"cli_test_linux_vm_patch_mode_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_linux_vm_patch_mode","date":"2024-12-26T06:42:49Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:51 GMT + - Thu, 26 Dec 2024 06:42:57 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7729D7AE0FE7464D9F327A0C89F94D94 Ref B: TYO201151001031 Ref C: 2024-08-26T09:42:52Z' + - 'Ref A: 031BF659EE544B0F85DDE9D835AC3DAE Ref B: MAA201060513019 Ref C: 2024-12-26T06:42:57Z' status: code: 200 message: OK @@ -61,14 +61,14 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:52 GMT + - Thu, 26 Dec 2024 06:42:58 GMT expires: - '-1' pragma: @@ -89,11 +89,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43935 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 80619C9EC3614BBBA8F980F57591CE12 Ref B: TYO201100114045 Ref C: 2024-08-26T09:42:52Z' + - 'Ref A: 209BF6C8383145928B15F554C11CCC2F Ref B: MAA201060516029 Ref C: 2024-12-26T06:42:58Z' status: code: 200 message: OK @@ -112,26 +112,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-07-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ - \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ - \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ - ,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\"\ - : []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" headers: cache-control: - no-cache @@ -140,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:53 GMT + - Thu, 26 Dec 2024 06:43:00 GMT expires: - '-1' pragma: @@ -152,11 +149,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12988,Microsoft.Compute/GetVMImageFromLocation30Min;73955 + - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73995 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 746CF7A8429B43269C7036006D3AC770 Ref B: TYO201100113009 Ref C: 2024-08-26T09:42:53Z' + - 'Ref A: 34CE65BC062B47418F04471387F8FDEA Ref B: MAA201060513045 Ref C: 2024-12-26T06:43:00Z' status: code: 200 message: OK @@ -175,12 +172,12 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-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 @@ -249,7 +246,51 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","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 + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central @@ -264,13 +305,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -280,7 +321,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -290,7 +331,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -300,7 +341,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -309,20 +350,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -332,7 +373,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -342,7 +383,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -351,7 +392,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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 @@ -360,7 +401,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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 @@ -369,7 +410,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -378,7 +419,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -387,7 +428,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -396,7 +437,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -406,7 +447,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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 @@ -415,7 +456,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -424,8 +465,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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, + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central + US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -434,8 +475,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -444,8 +485,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -454,8 +495,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -465,7 +506,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -475,7 +516,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -484,7 +525,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -494,7 +535,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -504,7 +545,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -513,15 +554,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -530,7 +571,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -539,7 +580,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -549,16 +590,16 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -567,8 +608,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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 + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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 @@ -577,14 +618,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, 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 @@ -594,7 +636,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US 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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["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 @@ -604,9 +646,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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":["2024-03-01","2024-01-01-preview","2024-01-01","2023-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":"locations/perimeterAssociableResourceTypes","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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":["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":"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 @@ -616,8 +658,8 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","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 @@ -627,8 +669,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","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 Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -638,8 +680,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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 @@ -649,8 +691,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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":"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 @@ -660,8 +702,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -671,8 +713,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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 @@ -682,17 +724,32 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP"],"apiVersions":["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 + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -702,8 +759,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -711,7 +768,7 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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 EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -719,7 +776,7 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -729,8 +786,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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, + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -741,8 +798,9 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -752,8 +810,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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, + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -764,11 +822,11 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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, + US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -778,13 +836,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -794,7 +852,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -803,7 +861,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -812,14 +870,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -829,7 +888,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 @@ -838,20 +897,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -861,7 +920,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -870,7 +929,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -879,20 +938,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -902,13 +961,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -918,7 +977,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -928,13 +987,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -944,7 +1003,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -952,8 +1011,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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, + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -962,14 +1021,14 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -979,7 +1038,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -989,7 +1048,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -999,7 +1058,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -1009,7 +1068,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1019,7 +1078,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -1029,7 +1088,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -1038,20 +1097,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1061,7 +1120,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1071,7 +1130,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1081,7 +1140,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -1091,8 +1150,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1101,7 +1160,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1110,7 +1169,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1119,7 +1178,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1128,7 +1187,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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 @@ -1137,7 +1196,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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 @@ -1146,7 +1205,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1155,7 +1214,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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 @@ -1164,7 +1223,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1173,7 +1232,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1182,7 +1241,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -1191,7 +1250,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -1200,7 +1259,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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 @@ -1209,7 +1268,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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 @@ -1218,7 +1277,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -1227,7 +1286,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -1236,7 +1295,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1245,7 +1304,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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 @@ -1254,7 +1313,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -1263,7 +1322,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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 @@ -1272,7 +1331,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1281,7 +1340,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1290,7 +1349,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1299,7 +1358,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -1308,7 +1367,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1317,7 +1376,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -1327,13 +1386,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1343,7 +1402,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -1352,7 +1411,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -1361,8 +1420,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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, + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -1372,7 +1431,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -1381,7 +1440,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -1391,7 +1450,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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 @@ -1400,7 +1459,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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 @@ -1409,7 +1468,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -1418,7 +1477,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -1427,7 +1486,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -1436,7 +1495,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -1445,7 +1504,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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":"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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia @@ -1469,7 +1528,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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, + US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -1481,19 +1540,19 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '204781' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:56 GMT + - Thu, 26 Dec 2024 06:43:02 GMT expires: - '-1' pragma: @@ -1507,7 +1566,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 8B909CFD213846C699709318135FFF51 Ref B: TYO201151005009 Ref C: 2024-08-26T09:42:54Z' + - 'Ref A: CC2AE8C822F24D08A9C0BA06D66AB663 Ref B: MAA201060515011 Ref C: 2024-12-26T06:43:01Z' status: code: 200 message: OK @@ -1526,9 +1585,9 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -1542,7 +1601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:56 GMT + - Thu, 26 Dec 2024 06:43:04 GMT expires: - '-1' pragma: @@ -1556,7 +1615,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: AF51FB420DA547818EE123C8CE857019 Ref B: TYO201151001036 Ref C: 2024-08-26T09:42:57Z' + - 'Ref A: B53325E287CE4A24B0E3410BC0167842 Ref B: MAA201060516051 Ref C: 2024-12-26T06:43:04Z' status: code: 404 message: Not Found @@ -1575,14 +1634,14 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -1591,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:57 GMT + - Thu, 26 Dec 2024 06:43:05 GMT expires: - '-1' pragma: @@ -1603,11 +1662,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15983,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43934 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: ED3F8FF3BEF746729593C74B908F650F Ref B: TYO201100116023 Ref C: 2024-08-26T09:42:57Z' + - 'Ref A: 07B1473F89DF4D4EA5DF5BD04ECD8AB2 Ref B: MAA201060513037 Ref C: 2024-12-26T06:43:05Z' status: code: 200 message: OK @@ -1626,26 +1685,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-07-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ - \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ - \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ - ,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\"\ - : []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" headers: cache-control: - no-cache @@ -1654,7 +1710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:58 GMT + - Thu, 26 Dec 2024 06:43:06 GMT expires: - '-1' pragma: @@ -1666,11 +1722,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12987,Microsoft.Compute/GetVMImageFromLocation30Min;73954 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73994 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: A016D2B4EA724FE1BA3756EF46EF37F7 Ref B: TYO201100114025 Ref C: 2024-08-26T09:42:58Z' + - 'Ref A: DD7699CA39ED43748CF4978E0488E5FA Ref B: MAA201060514021 Ref C: 2024-12-26T06:43:06Z' status: code: 200 message: OK @@ -1689,14 +1745,14 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -1705,7 +1761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:42:59 GMT + - Thu, 26 Dec 2024 06:43:08 GMT expires: - '-1' pragma: @@ -1717,11 +1773,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15982,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43933 + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992 x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - '3748' x-msedge-ref: - - 'Ref A: 813178F511E9499B801B477A92067839 Ref B: TYO201151002036 Ref C: 2024-08-26T09:42:59Z' + - 'Ref A: 5AF42890E40B41C599655BAD853F5250 Ref B: MAA201060516053 Ref C: 2024-12-26T06:43:07Z' status: code: 200 message: OK @@ -1740,26 +1796,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202401161?api-version=2024-07-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ - \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ - \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ - \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ - : true\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ - : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ - : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ - \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ - \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ - \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ - ,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\"\ - : []\r\n },\r\n \"location\": \"westus\",\r\n \"name\": \"18.04.202401161\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": + \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n + \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": + {\r\n \"automaticOSUpgradeSupported\": true\r\n },\r\n \"imageDeprecationStatus\": + {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n + \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": + \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": + \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n + \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": + 32213303808\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": + \"westus\",\r\n \"name\": \"18.04.202401161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202401161\"\r\n}" headers: cache-control: - no-cache @@ -1768,7 +1821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:00 GMT + - Thu, 26 Dec 2024 06:43:09 GMT expires: - '-1' pragma: @@ -1780,11 +1833,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73953 + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73993 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 26E50B2DA7F140C3839AB152C0BF724B Ref B: TYO201100116047 Ref C: 2024-08-26T09:43:00Z' + - 'Ref A: 14D2C78A02DE4EDA9584CE87F4CA0350 Ref B: MAA201060514039 Ref C: 2024-12-26T06:43:09Z' status: code: 200 message: OK @@ -1803,12 +1856,12 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-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 @@ -1877,7 +1930,51 @@ interactions: Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Italy North","Israel Central","Uk West","South India","Spain Central","Mexico Central","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 + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West + Central US","East US","UK South","East US 2","West Europe","North Europe","Australia + East","South Central US","North Central US","West US 2","West US 3","Southeast + Asia","Central India","Canada Central","Central US","France Central","Japan + East","Germany West Central","South Africa North","Korea Central","Sweden + Central","East Asia","Switzerland North","Brazil South","West US","Norway + East","UAE North","Australia Southeast","Canada East","Japan West","Italy + North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central @@ -1892,13 +1989,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1908,7 +2005,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1918,7 +2015,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-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 @@ -1928,7 +2025,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1937,20 +2034,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1960,7 +2057,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -1970,7 +2067,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -1979,7 +2076,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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 @@ -1988,7 +2085,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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 @@ -1997,7 +2094,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -2006,7 +2103,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -2015,7 +2112,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -2024,7 +2121,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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 @@ -2034,7 +2131,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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 @@ -2043,7 +2140,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2052,8 +2149,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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, + North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central + US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2062,8 +2159,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2072,8 +2169,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2082,8 +2179,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2093,7 +2190,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2103,7 +2200,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2112,7 +2209,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -2122,7 +2219,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -2132,7 +2229,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2141,15 +2238,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -2158,7 +2255,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2167,7 +2264,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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 @@ -2177,16 +2274,16 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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","North Europe","West Europe","East Asia","Southeast Asia","North Central - US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast","Central India","South India","West - India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar + Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2195,8 +2292,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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 + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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 @@ -2205,14 +2302,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, 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 @@ -2222,7 +2320,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US 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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["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 @@ -2232,9 +2330,9 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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":["2024-03-01","2024-01-01-preview","2024-01-01","2023-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":"locations/perimeterAssociableResourceTypes","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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":["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":"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 @@ -2244,8 +2342,8 @@ interactions: East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","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","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","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 @@ -2255,8 +2353,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","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 Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2266,8 +2364,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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 @@ -2277,8 +2375,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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":"networkGroupMemberships","locations":["West + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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":"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 @@ -2288,8 +2386,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -2299,8 +2397,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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 @@ -2310,17 +2408,32 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","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 + North","Israel Central","Mexico Central","Spain Central","New Zealand North","East + US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP","Central US EUAP"],"apiVersions":["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","East US 2 EUAP"],"apiVersions":["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 + US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -2330,8 +2443,8 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central","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","New Zealand North","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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -2339,7 +2452,7 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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 EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -2347,7 +2460,7 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy + Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -2357,8 +2470,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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, + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -2369,8 +2482,9 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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 + Central","Spain Central","Mexico Central","New Zealand North","Central US + EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -2380,8 +2494,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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, + Central","Central US","Israel Central","Spain Central","Mexico Central","New + Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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 @@ -2392,11 +2506,11 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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, + US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-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":["2024-05-01","2024-03-01","2024-01-01","2023-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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2406,13 +2520,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2422,7 +2536,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -2431,7 +2545,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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 @@ -2440,14 +2554,15 @@ interactions: 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","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2457,7 +2572,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 @@ -2466,20 +2581,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2489,7 +2604,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -2498,7 +2613,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -2507,20 +2622,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2530,13 +2645,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2546,7 +2661,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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 @@ -2556,13 +2671,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2572,7 +2687,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -2580,8 +2695,8 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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, + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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 @@ -2590,14 +2705,14 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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 + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2607,7 +2722,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -2617,7 +2732,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-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 @@ -2627,7 +2742,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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 @@ -2637,7 +2752,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2647,7 +2762,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-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 @@ -2657,7 +2772,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -2666,20 +2781,20 @@ interactions: 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 + Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North + Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland + Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South + Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast + Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden + Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE + North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West + Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West + US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2689,7 +2804,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2699,7 +2814,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2709,7 +2824,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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 @@ -2719,8 +2834,8 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-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-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2729,7 +2844,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2738,7 +2853,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2747,7 +2862,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2756,7 +2871,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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 @@ -2765,7 +2880,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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 @@ -2774,7 +2889,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2783,7 +2898,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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 @@ -2792,7 +2907,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2801,7 +2916,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -2810,7 +2925,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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 @@ -2819,7 +2934,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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 @@ -2828,7 +2943,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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 @@ -2837,7 +2952,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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 @@ -2846,7 +2961,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -2855,7 +2970,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -2864,7 +2979,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2873,7 +2988,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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 @@ -2882,7 +2997,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -2891,7 +3006,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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 @@ -2900,7 +3015,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2909,7 +3024,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2918,7 +3033,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2927,7 +3042,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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 @@ -2936,7 +3051,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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 @@ -2945,7 +3060,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 @@ -2955,13 +3070,13 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"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, + Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West + US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia + East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -2971,7 +3086,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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 @@ -2980,7 +3095,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -2989,8 +3104,8 @@ interactions: South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland - Central","Italy North","Israel Central","Mexico Central","Spain Central","Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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, + Central","Italy North","Israel Central","Mexico Central","Spain Central","New + Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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 @@ -3000,7 +3115,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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 @@ -3009,7 +3124,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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 @@ -3019,7 +3134,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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 @@ -3028,7 +3143,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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 @@ -3037,7 +3152,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -3046,7 +3161,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -3055,7 +3170,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -3064,7 +3179,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 + Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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 @@ -3073,7 +3188,7 @@ interactions: Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain - Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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":"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","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia @@ -3097,7 +3212,7 @@ interactions: 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","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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, + US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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 @@ -3109,19 +3224,19 @@ interactions: 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy - North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, + North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '195259' + - '204781' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:02 GMT + - Thu, 26 Dec 2024 06:43:11 GMT expires: - '-1' pragma: @@ -3135,7 +3250,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 2D2BC65A68C24569B4222A2AEE13F6CC Ref B: TYO201151005025 Ref C: 2024-08-26T09:43:01Z' + - 'Ref A: ACE12E27111749608F07C2236950FD44 Ref B: MAA201060515045 Ref C: 2024-12-26T06:43:10Z' status: code: 200 message: OK @@ -3154,9 +3269,9 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1'' @@ -3170,7 +3285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:02 GMT + - Thu, 26 Dec 2024 06:43:12 GMT expires: - '-1' pragma: @@ -3184,7 +3299,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 863B4EA6C11B47A888FF0616A324F5A6 Ref B: TYO201100114017 Ref C: 2024-08-26T09:43:03Z' + - 'Ref A: 3521DBE04D3A49C39DF8DA064C3C6179 Ref B: MAA201060513031 Ref C: 2024-12-26T06:43:12Z' status: code: 404 message: Not Found @@ -3215,7 +3330,7 @@ interactions: null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "vmtest", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt", + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDac2ua4xVIQdoi3CMbVu+1nARihp7i7xVaLzkmnCOH2QKS8x2OzC6wMouwZ0kEHvHB1E5d745OFuYCX6PzhyGs+7bfVxBAfOI99wsD2aibWLHgO+aQ2Lsuhr5PMQ5AA5oPDp/1iNWO5YaLG5qmHQXeF2L+ZqLVBaO20b7C3RhbcCuipQob4BUkqt8CD+w1hOLiNE25/sU0kH/FcB4T7ch/yo7YYJO5bmXyIt7apcC34FfLXfNOcybJqbU2YtMOg4RNHvli9bbGinkbx6Dzi1JRdoHX7klKNqWEI/L9T7zESvuoOddjU6qMFQgetaz6tiAVJptPH/rWCJX8pXPszyPZ", "path": "/home/vmtest/.ssh/authorized_keys"}]}, "provisionVMAgent": true, "patchSettings": {"patchMode": "AutomaticByPlatform"}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' @@ -3236,23 +3351,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_KklHJ6Qf3jTBvqZRW3v5epZg8rRnuVlf","name":"vm_deploy_KklHJ6Qf3jTBvqZRW3v5epZg8rRnuVlf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18167990331267453777","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:43:07.1428289Z","duration":"PT0.0001373S","correlationId":"b61e8409-f2df-4310-8212-bb1d37c2b805","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_WgmeHI2wmTpxADmUfwpm0n029XhkOU2k","name":"vm_deploy_WgmeHI2wmTpxADmUfwpm0n029XhkOU2k","type":"Microsoft.Resources/deployments","properties":{"templateHash":"279384919876448680","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-12-26T06:43:26.3881006Z","duration":"PT0.0009309S","correlationId":"55abbddf-14b6-4f27-bcb8-8223d2b6aebb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_KklHJ6Qf3jTBvqZRW3v5epZg8rRnuVlf/operationStatuses/08584769415003081892?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_WgmeHI2wmTpxADmUfwpm0n029XhkOU2k/operationStatuses/08584664114866154709?api-version=2022-09-01 cache-control: - no-cache content-length: - - '2459' + - '2457' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:07 GMT + - Thu, 26 Dec 2024 06:43:28 GMT expires: - '-1' pragma: @@ -3264,13 +3379,13 @@ interactions: x-content-type-options: - nosniff x-ms-deployment-engine-version: - - 1.95.0 + - 1.158.0 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: B3DFDB0DA4E443E5A9EAF55B61DD698F Ref B: TYO201151006040 Ref C: 2024-08-26T09:43:04Z' + - 'Ref A: B18E68F76C8F43669342F530BD4703E9 Ref B: MAA201060515053 Ref C: 2024-12-26T06:43:13Z' status: code: 201 message: Created @@ -3289,9 +3404,9 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769415003081892?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584664114866154709?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -3303,7 +3418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:08 GMT + - Thu, 26 Dec 2024 06:43:29 GMT expires: - '-1' pragma: @@ -3317,7 +3432,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 906D811F18CC4139AA6B318E78FD607A Ref B: TYO201151006040 Ref C: 2024-08-26T09:43:08Z' + - 'Ref A: CC7056C9292C4D45BB8FC2548B64EBD1 Ref B: MAA201060515053 Ref C: 2024-12-26T06:43:28Z' status: code: 200 message: OK @@ -3336,9 +3451,9 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769415003081892?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584664114866154709?api-version=2022-09-01 response: body: string: '{"status":"Running"}' @@ -3350,7 +3465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:43:39 GMT + - Thu, 26 Dec 2024 06:44:00 GMT expires: - '-1' pragma: @@ -3364,7 +3479,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 10F314CE510F4B1FA041C0B6FB8FD478 Ref B: TYO201151006040 Ref C: 2024-08-26T09:43:38Z' + - 'Ref A: 7922B21AF82541DCA62FFDAC128A5503 Ref B: MAA201060515053 Ref C: 2024-12-26T06:43:59Z' status: code: 200 message: OK @@ -3383,9 +3498,56 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769415003081892?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584664114866154709?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 26 Dec 2024 06:44:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: A6D791104C2F4191B5422E0C29EF012B Ref B: MAA201060515053 Ref C: 2024-12-26T06:44:31Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username + --subnet --vnet-name + User-Agent: + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584664114866154709?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -3397,7 +3559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:09 GMT + - Thu, 26 Dec 2024 06:45:02 GMT expires: - '-1' pragma: @@ -3411,7 +3573,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 854E40192D604FBEB043B0A74AAD89E2 Ref B: TYO201151006040 Ref C: 2024-08-26T09:44:09Z' + - 'Ref A: E90EF569960A41149126CB7AACD0B175 Ref B: MAA201060515053 Ref C: 2024-12-26T06:45:02Z' status: code: 200 message: OK @@ -3430,21 +3592,21 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_KklHJ6Qf3jTBvqZRW3v5epZg8rRnuVlf","name":"vm_deploy_KklHJ6Qf3jTBvqZRW3v5epZg8rRnuVlf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18167990331267453777","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:43:40.9164224Z","duration":"PT33.7737308S","correlationId":"b61e8409-f2df-4310-8212-bb1d37c2b805","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Resources/deployments/vm_deploy_WgmeHI2wmTpxADmUfwpm0n029XhkOU2k","name":"vm_deploy_WgmeHI2wmTpxADmUfwpm0n029XhkOU2k","type":"Microsoft.Resources/deployments","properties":{"templateHash":"279384919876448680","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-12-26T06:44:34.5583917Z","duration":"PT1M8.171222S","correlationId":"55abbddf-14b6-4f27-bcb8-8223d2b6aebb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}' headers: cache-control: - no-cache content-length: - - '3322' + - '3320' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:10 GMT + - Thu, 26 Dec 2024 06:45:04 GMT expires: - '-1' pragma: @@ -3458,7 +3620,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B93F111E93AD43FD84B8F559471F6433 Ref B: TYO201151006040 Ref C: 2024-08-26T09:44:10Z' + - 'Ref A: 233B947207464D0AB6315B00B7351DBC Ref B: MAA201060515053 Ref C: 2024-12-26T06:45:03Z' status: code: 200 message: OK @@ -3477,67 +3639,64 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\ - : {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"vmId\": \"2a800251-e8b6-4088-9a2f-5c6ed0a3e3f4\"\ - ,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\ - publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ - \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \ - \ \"exactVersion\": \"18.04.202401161\"\r\n },\r\n \"osDisk\"\ - : {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_disk1_53fa5e12c9c94223a4a83ec7b100c0b4\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/disks/vm1_disk1_53fa5e12c9c94223a4a83ec7b100c0b4\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"vmtest\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \ - \ {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n\ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByPlatform\"\ - ,\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - }]},\r\n \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \ - \ \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"\ - vmAgent\": {\r\n \"vmAgentVersion\": \"2.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-26T09:43:51+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\ - \ [\r\n {\r\n \"name\": \"vm1_disk1_53fa5e12c9c94223a4a83ec7b100c0b4\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2024-08-26T09:43:18.2888224+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-26T09:43:38.9766858+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-26T09:43:16.2262884+00:00\"\ - \r\n },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"31a7b338-a516-44dc-b36f-490505389d7b\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_73a4acc22b9c432c93a9d4346729737f\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_73a4acc22b9c432c93a9d4346729737f\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"vmtest\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDac2ua4xVIQdoi3CMbVu+1nARihp7i7xVaLzkmnCOH2QKS8x2OzC6wMouwZ0kEHvHB1E5d745OFuYCX6PzhyGs+7bfVxBAfOI99wsD2aibWLHgO+aQ2Lsuhr5PMQ5AA5oPDp/1iNWO5YaLG5qmHQXeF2L+ZqLVBaO20b7C3RhbcCuipQob4BUkqt8CD+w1hOLiNE25/sU0kH/FcB4T7ch/yo7YYJO5bmXyIt7apcC34FfLXfNOcybJqbU2YtMOg4RNHvli9bbGinkbx6Dzi1JRdoHX7klKNqWEI/L9T7zESvuoOddjU6qMFQgetaz6tiAVJptPH/rWCJX8pXPszyPZ\"\r\n + \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByPlatform\",\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": + \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n + \ \"vmAgentVersion\": \"2.12.0.2\",\r\n \"statuses\": [\r\n {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": + \"Guest Agent is running\",\r\n \"time\": \"2024-12-26T06:44:34+00:00\"\r\n + \ }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n + \ \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_73a4acc22b9c432c93a9d4346729737f\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2024-12-26T06:43:55.9203862+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-12-26T06:44:28.6863521+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-12-26T06:43:52.5922259+00:00\"\r\n + \ },\r\n \"etag\": \"\\\"1\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '3862' + - '3871' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:11 GMT + - Thu, 26 Dec 2024 06:45:05 GMT expires: - '-1' pragma: @@ -3548,12 +3707,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;33 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: C5E937E2C3A341B4BB7C98702D29BD3D Ref B: TYO201100113049 Ref C: 2024-08-26T09:44:11Z' + - 'Ref A: 33CF244165CF44FC878D072E4A9D25CF Ref B: MAA201060513011 Ref C: 2024-12-26T06:45:05Z' status: code: 200 message: '' @@ -3572,48 +3733,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - ,\r\n \"etag\": \"W/\\\"63098b4a-60ce-43c5-94bb-eca22335a552\\\"\",\r\n \ - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"56bb18d4-f10f-4180-88fc-6592618bd928\",\r\n \ - \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - ,\r\n \"etag\": \"W/\\\"63098b4a-60ce-43c5-94bb-eca22335a552\\\"\"\ - ,\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/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\": \"z2mfftrm4jrevgvtpi1re2uc4h.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"60-45-BD-01-C2-8B\",\r\n \"vnetEncryptionSupported\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ - \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"\ - auxiliaryMode\": \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ - ,\r\n \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}" + string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"e02d53e2-f7f5-46bd-99d5-19779acb4ba8\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ff775972-21c9-4b18-b6d7-9ef9723140fa","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"e02d53e2-f7f5-46bd-99d5-19779acb4ba8\"","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_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"2zypv2l0co2ehexy0qjos1qxed.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-59-1F-A6","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}' headers: cache-control: - no-cache content-length: - - '2487' + - '2041' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:12 GMT + - Thu, 26 Dec 2024 06:45:06 GMT etag: - - W/"63098b4a-60ce-43c5-94bb-eca22335a552" + - W/"e02d53e2-f7f5-46bd-99d5-19779acb4ba8" expires: - '-1' pragma: @@ -3625,11 +3761,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36a26d8f-20d3-49a9-b547-c68c18e5c966 + - 11ab8a7d-ffe5-438c-a48f-272e20207d6e x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - '3749' x-msedge-ref: - - 'Ref A: 3C9244FADDEA440AA3C504EDDD30FBAD Ref B: TYO201100117029 Ref C: 2024-08-26T09:44:12Z' + - 'Ref A: 5EBA68E8BC184ED0B6252E5384C6183A Ref B: MAA201060515045 Ref C: 2024-12-26T06:45:06Z' status: code: 200 message: OK @@ -3648,33 +3784,23 @@ interactions: - -g -n --image --enable-agent --patch-mode --generate-ssh-keys --nsg-rule --admin-username --subnet --vnet-name User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"ce69ff89-db30-41c2-8407-d332c707c1c6\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aeecac69-6668-4694-b849-5e0cdea38feb\"\ - ,\r\n \"ipAddress\": \"52.160.103.213\",\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"b45bc7dd-ec8d-4b1d-bf47-d982a3fb7c1b\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"142ccc16-6c53-46de-869c-99f2ce8f50b1","ipAddress":"13.93.178.173","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '945' + - '809' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:13 GMT + - Thu, 26 Dec 2024 06:45:08 GMT etag: - - W/"ce69ff89-db30-41c2-8407-d332c707c1c6" + - W/"b45bc7dd-ec8d-4b1d-bf47-d982a3fb7c1b" expires: - '-1' pragma: @@ -3686,11 +3812,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27c2b847-a22d-433e-a48c-0e00b34f7cab + - c6d3d3bc-e141-4875-80c5-f9ef67525eb0 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5AE8758AA2454836917BE3A80B14875B Ref B: TYO201151001062 Ref C: 2024-08-26T09:44:13Z' + - 'Ref A: DB4548CF4ED243B483E30F534D5EA49D Ref B: MAA201060515039 Ref C: 2024-12-26T06:45:07Z' status: code: 200 message: OK @@ -3708,30 +3834,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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"73081a56-3ef3-457d-963b-fa88bfe56077\\\"\",\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_LINUX_VM_PATCH_MODE_TZUAUDCMI6PSUMLTBOLH57J6ZN3R75POQAWT6T2K4GIWHX/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ - \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"82635435-b96c-40c7-9790-50da5e026c38\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_LINUX_VM_PATCH_MODE_RTYOIFTESER2RXH2HGF477HGQSEBHJUWLHI3BRTATJMUXR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '882' + - '738' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:14 GMT + - Thu, 26 Dec 2024 06:45:12 GMT etag: - - W/"73081a56-3ef3-457d-963b-fa88bfe56077" + - W/"82635435-b96c-40c7-9790-50da5e026c38" expires: - '-1' pragma: @@ -3743,11 +3862,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78d96414-5d2c-463f-841c-7935b336c04a + - 0b2ccdc3-e27d-42a3-9113-de64aa6ef94e x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 5C67D93154CB4AD999CBC380377FE179 Ref B: TYO201151006029 Ref C: 2024-08-26T09:44:14Z' + - 'Ref A: A431683BD71C4043A53A21070C478157 Ref B: MAA201060514047 Ref C: 2024-12-26T06:45:12Z' status: code: 200 message: OK @@ -3772,33 +3891,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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"6fa09c31-7313-4000-a657-9fb3d869eaa6\\\"\",\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\ - ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"c16080cd-206b-4c62-a99d-6fda86960c22\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b682068-8fb9-4a13-9464-92e6b8c54bed?api-version=2024-01-01&t=638602622553844395&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=SvNxFOjCIBCewBl64i3de0sy_kf5-xOcSRBBpx0CI04GtW404KS_fHn2bTGRFQKZYOc_VE-QS056uKx3DJUXouqi7PZCcVw-5Ouak9-3YL2__vIKxeCsnCGB86DNDxqLYuKSEtKd_P3OApGDXM71GpZbGlZQUG89y2bkxG9U7GQ7kByYk38cKxV9p33OCK-Dwc9sg_ppzrTXsdzSTSyvg_DgxpNJkJAfg_w7FyqGaVz0uV2TykZJTL1IrXjYiEZ4-nh20N1Z-yR3hGxWVu3ArTUg3WRRxfurDr_lnjSn-FLj9TYsBW5qFMsXkdUm0cPQ19EWKDmVjVUF7dgTc_coJA&h=PueSZqbi_adHYGF97nYVMr4orzOAEjzqckoco30c3x0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9568052f-6400-4959-a42a-4baf27117078?api-version=2024-01-01&t=638707923143625457&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=fCPjJCjJvB_ESKhbGYKJMzBndicID6pElAUgHvLA6a9XalWY046uYnTANecmf38PAv3fPnRL9hD-lz3wVI0Ebk0-tkyZqlx0AKtiSh9N-5KACPp0sRHLzXiG-aEuKeXgVLeabgNt6uBLRuXdafekNP0OKZHktze-9S1OA_VEe_HLkNW7u3am_1G8QFJcs7b2ikk2SX86VonkvZsBhDhyU3MPz1WiqSFkcSgSXPpvxlHiHRO_TtDQXMbMVMl8Luz4bVUxqpedrncbKj9f8uTSMSojL0juhqOu3A132v1GCYLkY-ugXuhFxtj82C7seAU6p3Sx46bz05FkTGPRJsFLFA&h=Fxk9pV82dH3YT2jDkzxe0wxYVaRwujfo8gf-fldQvf4 cache-control: - no-cache content-length: - - '878' + - '727' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:14 GMT + - Thu, 26 Dec 2024 06:45:13 GMT expires: - '-1' pragma: @@ -3810,13 +3921,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f27e92da-e50a-43cf-b52c-c01e3a3fecdf + - 1a76f539-1478-4164-9596-a01ec67aa1e3 x-ms-ratelimit-remaining-subscription-global-writes: - '2999' x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: 949022FEA62D4768852525BDC67ABDEE Ref B: TYO201151006029 Ref C: 2024-08-26T09:44:14Z' + - 'Ref A: E2FBFAA08CDF4830A4EDF57C43C4E520 Ref B: MAA201060514047 Ref C: 2024-12-26T06:45:13Z' status: code: 200 message: OK @@ -3834,21 +3945,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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b682068-8fb9-4a13-9464-92e6b8c54bed?api-version=2024-01-01&t=638602622553844395&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=SvNxFOjCIBCewBl64i3de0sy_kf5-xOcSRBBpx0CI04GtW404KS_fHn2bTGRFQKZYOc_VE-QS056uKx3DJUXouqi7PZCcVw-5Ouak9-3YL2__vIKxeCsnCGB86DNDxqLYuKSEtKd_P3OApGDXM71GpZbGlZQUG89y2bkxG9U7GQ7kByYk38cKxV9p33OCK-Dwc9sg_ppzrTXsdzSTSyvg_DgxpNJkJAfg_w7FyqGaVz0uV2TykZJTL1IrXjYiEZ4-nh20N1Z-yR3hGxWVu3ArTUg3WRRxfurDr_lnjSn-FLj9TYsBW5qFMsXkdUm0cPQ19EWKDmVjVUF7dgTc_coJA&h=PueSZqbi_adHYGF97nYVMr4orzOAEjzqckoco30c3x0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9568052f-6400-4959-a42a-4baf27117078?api-version=2024-01-01&t=638707923143625457&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=fCPjJCjJvB_ESKhbGYKJMzBndicID6pElAUgHvLA6a9XalWY046uYnTANecmf38PAv3fPnRL9hD-lz3wVI0Ebk0-tkyZqlx0AKtiSh9N-5KACPp0sRHLzXiG-aEuKeXgVLeabgNt6uBLRuXdafekNP0OKZHktze-9S1OA_VEe_HLkNW7u3am_1G8QFJcs7b2ikk2SX86VonkvZsBhDhyU3MPz1WiqSFkcSgSXPpvxlHiHRO_TtDQXMbMVMl8Luz4bVUxqpedrncbKj9f8uTSMSojL0juhqOu3A132v1GCYLkY-ugXuhFxtj82C7seAU6p3Sx46bz05FkTGPRJsFLFA&h=Fxk9pV82dH3YT2jDkzxe0wxYVaRwujfo8gf-fldQvf4 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 09:44:15 GMT + - Thu, 26 Dec 2024 06:45:14 GMT expires: - '-1' pragma: @@ -3860,11 +3971,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73161337-62b2-4744-839c-668a58d0e0fc + - 7db2f5d3-09fb-4120-81ce-4d2456e5ada9 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 112BB00D7DDB4284B1659053E498C77C Ref B: TYO201151006029 Ref C: 2024-08-26T09:44:15Z' + - 'Ref A: A41F0CEEF8CA45F2A9F2BC4537C8C51C Ref B: MAA201060514047 Ref C: 2024-12-26T06:45:14Z' status: code: 200 message: OK @@ -3882,31 +3993,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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"15952686-675a-4a4e-96a5-5d9453f73cac\\\"\",\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_LINUX_VM_PATCH_MODE_TZUAUDCMI6PSUMLTBOLH57J6ZN3R75POQAWT6T2K4GIWHX/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\ - \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\ - ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ - \r\n}" + string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"04f2af99-98bd-4253-b270-3a29f0d3c67f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_LINUX_VM_PATCH_MODE_RTYOIFTESER2RXH2HGF477HGQSEBHJUWLHI3BRTATJMUXR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '919' + - '768' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:15 GMT + - Thu, 26 Dec 2024 06:45:15 GMT etag: - - W/"15952686-675a-4a4e-96a5-5d9453f73cac" + - W/"04f2af99-98bd-4253-b270-3a29f0d3c67f" expires: - '-1' pragma: @@ -3918,11 +4021,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9de53d8a-0c7f-4f8e-8884-cd4a7989f536 + - 05c52f32-f4d9-4a1a-8496-d7595bdbd51d x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 50025E6AA41C4939BFA43D85FB951A58 Ref B: TYO201151006029 Ref C: 2024-08-26T09:44:15Z' + - 'Ref A: 64E9C59F863D478F9424CF04ADC15D6F Ref B: MAA201060514047 Ref C: 2024-12-26T06:45:15Z' status: code: 200 message: OK @@ -3940,48 +4043,47 @@ 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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01 response: body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\ - : {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"vmId\": \"2a800251-e8b6-4088-9a2f-5c6ed0a3e3f4\"\ - ,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\ - publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ - \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \ - \ \"exactVersion\": \"18.04.202401161\"\r\n },\r\n \"osDisk\"\ - : {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1_disk1_53fa5e12c9c94223a4a83ec7b100c0b4\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/disks/vm1_disk1_53fa5e12c9c94223a4a83ec7b100c0b4\"\ - \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"vmtest\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \ - \ {\r\n \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n\ - \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCey0/ipz0OxUGA6xunJY5HdhvlsyRf2JdpnRaH0UU5KsAiajLq5HifCzJAEpRvWXIIYKSrqNi+hSmKRXiGJaHnK0dm0QO8YvM/Ab+MZUZ0L9VRznMoLsexTgDEC6QidxP5VYxXQwzgvbK1kn1J+7QTmd9JzV4Q83EEIZM5VGp7DwuUzhSuUN4LNJ9TnsCpjZwDIqIIGo9kLRLov+CfPb50o/768pa4W87a7FDJc74gvu/Qh7K05ztWNABlqYk5QsSkLWosN/vCaR+Nlh6EroTUw679G0MLj2WD/P0vLbiy1Xgf2oZ4Q5vLOQfoU2SWNkzzmfpdu3o9+VWNQppUZPyt\"\ - \r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\"\ - : true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByPlatform\"\ - ,\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - }]},\r\n \"timeCreated\": \"2024-08-26T09:43:16.2262884+00:00\"\r\n },\r\ - \n \"etag\": \"\\\"1\\\"\"\r\n}" + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": + \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vmId\": \"31a7b338-a516-44dc-b36f-490505389d7b\",\r\n \"storageProfile\": + {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n + \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202401161\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"vm1_OsDisk_1_73a4acc22b9c432c93a9d4346729737f\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_73a4acc22b9c432c93a9d4346729737f\"\r\n + \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"vmtest\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/vmtest/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDac2ua4xVIQdoi3CMbVu+1nARihp7i7xVaLzkmnCOH2QKS8x2OzC6wMouwZ0kEHvHB1E5d745OFuYCX6PzhyGs+7bfVxBAfOI99wsD2aibWLHgO+aQ2Lsuhr5PMQ5AA5oPDp/1iNWO5YaLG5qmHQXeF2L+ZqLVBaO20b7C3RhbcCuipQob4BUkqt8CD+w1hOLiNE25/sU0kH/FcB4T7ch/yo7YYJO5bmXyIt7apcC34FfLXfNOcybJqbU2YtMOg4RNHvli9bbGinkbx6Dzi1JRdoHX7klKNqWEI/L9T7zESvuoOddjU6qMFQgetaz6tiAVJptPH/rWCJX8pXPszyPZ\"\r\n + \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": + true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByPlatform\",\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_linux_vm_patch_mode_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"timeCreated\": \"2024-12-26T06:43:52.5922259+00:00\"\r\n },\r\n \"etag\": + \"\\\"1\\\"\"\r\n}" headers: cache-control: - no-cache content-length: - - '2571' + - '2577' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:17 GMT + - Thu, 26 Dec 2024 06:45:17 GMT etag: - '"1"' expires: @@ -3994,12 +4096,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;23997,Microsoft.Compute/LowCostGetResource;32 + - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;32 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 6D51D49C06614CB0802B485C9393590B Ref B: TYO201151002029 Ref C: 2024-08-26T09:44:17Z' + - 'Ref A: FA652049FD37444C8AF52DF74AC47FE5 Ref B: MAA201060515053 Ref C: 2024-12-26T06:45:16Z' status: code: 200 message: '' @@ -4019,7 +4123,7 @@ 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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_linux_vm_patch_mode_000001/providers/Microsoft.Compute/virtualMachines/vm1/assessPatches?api-version=2022-11-01 response: @@ -4029,17 +4133,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY cache-control: - no-cache content-length: - '0' date: - - Mon, 26 Aug 2024 09:44:18 GMT + - Thu, 26 Dec 2024 06:45:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638707923192839440&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=W2u8RaVr3TKjFbPGulE5kMu_ARAphLkdo5thIksu3hUDcdh0OX9jJ9mz7O7NlQddDgk9OQzgMhuDuKHXIEjHGHd97-2oj8Oawpu3uRmQEi1GwCkseQ-W7sFjYEUzn_MFBq6LH3vJkIVFApvnuf0V8DUimJ8NlvkHd0T-oOZ_yXb3HbcaG9CTXBNN5UbCwHlor5BIaTpnIG3BHNtBxUEFEOoJgNLt4WGFphmXhOLkZeCYF216S9qmmibvqbmyzVKblw1CGoIwrtYgpwLP5hFKXVgSbGVrXNz8En5GGCnkfYz4Hk24auv3z5xr-ysTjUDCSfgdG3vc10C4KFp3DuPQfQ&h=PdSyHVZTkUEKEARUgqbXqTSFjYn9FY_oF2AI3F3Qbdw pragma: - no-cache strict-transport-security: @@ -4048,6 +4152,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMGuestPatchOperationSubscriptionMaximum;599,Microsoft.Compute/VMGuestPatchOperationResource;5 x-ms-ratelimit-remaining-subscription-global-writes: @@ -4055,7 +4161,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '199' x-msedge-ref: - - 'Ref A: DC098CDD42A54B52A8E65C9B89216F18 Ref B: TYO201100117029 Ref C: 2024-08-26T09:44:18Z' + - 'Ref A: EF312662407448B1875C218B403067D2 Ref B: MAA201060516031 Ref C: 2024-12-26T06:45:18Z' status: code: 202 message: '' @@ -4073,14 +4179,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4089,7 +4194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:18 GMT + - Thu, 26 Dec 2024 06:45:18 GMT expires: - '-1' pragma: @@ -4100,12 +4205,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14980 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 04E85FFE9ED34C1EA5BEDEF4F1B17C33 Ref B: TYO201100117029 Ref C: 2024-08-26T09:44:18Z' + - 'Ref A: E2F6DB3538F5483699A5B398512F426C Ref B: MAA201060516031 Ref C: 2024-12-26T06:45:19Z' status: code: 200 message: '' @@ -4123,14 +4230,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4139,7 +4245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:44:48 GMT + - Thu, 26 Dec 2024 06:45:49 GMT expires: - '-1' pragma: @@ -4150,12 +4256,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 84AFEB4C5CC84CCD8D07B6E94ECE090E Ref B: TYO201100117029 Ref C: 2024-08-26T09:44:48Z' + - 'Ref A: E0FAB562CF484C41A8875A03F9DFA64E Ref B: MAA201060516031 Ref C: 2024-12-26T06:45:49Z' status: code: 200 message: '' @@ -4173,14 +4281,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4189,7 +4296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:45:23 GMT + - Thu, 26 Dec 2024 06:46:19 GMT expires: - '-1' pragma: @@ -4200,12 +4307,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14987 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B2C6CE2FB4A5417C86620CFFF1C5EDFC Ref B: TYO201100117029 Ref C: 2024-08-26T09:45:24Z' + - 'Ref A: B7C7EEFA9A964C8BB6CEAA264EBF1E58 Ref B: MAA201060516031 Ref C: 2024-12-26T06:46:20Z' status: code: 200 message: '' @@ -4223,14 +4332,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4239,7 +4347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:45:54 GMT + - Thu, 26 Dec 2024 06:46:50 GMT expires: - '-1' pragma: @@ -4250,12 +4358,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' 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: 88275DA0EAD046FDA0ADE2C07F27F062 Ref B: TYO201100117029 Ref C: 2024-08-26T09:45:54Z' + - 'Ref A: 5BF61EB44D9F421097E4BCD6A04A7F0E Ref B: MAA201060516031 Ref C: 2024-12-26T06:46:50Z' status: code: 200 message: '' @@ -4273,14 +4383,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4289,7 +4398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:46:24 GMT + - Thu, 26 Dec 2024 06:47:21 GMT expires: - '-1' pragma: @@ -4300,12 +4409,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 066A802D24DA4870906D0F97A8BE93A9 Ref B: TYO201100117029 Ref C: 2024-08-26T09:46:24Z' + - 'Ref A: 4A1CF9C4B2B24EF383F96A6ECDA3B70D Ref B: MAA201060516031 Ref C: 2024-12-26T06:47:21Z' status: code: 200 message: '' @@ -4323,14 +4434,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache @@ -4339,7 +4449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:46:54 GMT + - Thu, 26 Dec 2024 06:47:51 GMT expires: - '-1' pragma: @@ -4350,12 +4460,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: 7A4CF8033D5240B7AE4FE9D83F0AEA86 Ref B: TYO201100117029 Ref C: 2024-08-26T09:46:54Z' + - 'Ref A: F833CD33A57A402693E64909B09491AD Ref B: MAA201060516031 Ref C: 2024-12-26T06:47:52Z' status: code: 200 message: '' @@ -4373,653 +4485,873 @@ 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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638707923192683163&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=J-NybDhXcgxd9cA2kJE55_7f0_H6jCrgKXkvMbWeFvNPRlxaoE-37dh_oywSbqZ3Yidq7jEpY9LfkNARTbI-Lx7AEVbDnn1NsfRuwhtewHZNWdMHlPvq9QPX6xecCejJG4v5DC8AM9iRfHQKitCiI5sstKkUPgUQgpS7asONvv7wLAUszuGZk5UayUzh_hazgNViClb6g3VqexpQxb1FoiTkRHe4Ob8PXy_L8EYUhdQuqdfCbEEUlMbTljjM9l5gInIDMXHMrwNCHfmqVGaYh21mSRP-kSFb3S_WE3UZAPam7DxPAgKapfk3kC57QzAPIIVR_QDMeaakPBO_4DhHTw&h=t151Oc0Dm_mmxHjdLzm9Z5VpOdT-_F30y_7u-FuibPY response: body: - string: "{\r\n \"startTime\": \"2024-08-26T09:44:18.3054961+00:00\",\r\n \"\ - endTime\": \"2024-08-26T09:47:20.7305899+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\"status\":\"Succeeded\",\"assessmentActivityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"rebootPending\":false,\"criticalAndSecurityPatchCount\"\ - :123,\"otherPatchCount\":7,\"startDateTime\":\"2024-08-26T09:44:27.8058633+00:00\"\ - ,\"availablePatches\":[{\"patchId\":\"distro-info-data_0.37ubuntu0.18_Ubuntu_18.04\"\ - ,\"name\":\"distro-info-data\",\"version\":\"0.37ubuntu0.18\",\"classifications\"\ - :[\"Security\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libpam0g_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libpam0g\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"screen_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"screen\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libkrb5-3_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libkrb5-3\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libgssapi-krb5-2_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libgssapi-krb5-2\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpython3.6-minimal_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpython3.6-minimal\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libnghttp2-14_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libnghttp2-14\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libisccfg160_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libisccfg160\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libcups2_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libcups2\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"vim-common_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"vim-common\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libcurl4_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libcurl4\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libapt-inst2.0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libapt-inst2.0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libldap-2.4-2_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libldap-2.4-2\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpam-modules_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpam-modules\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"openssl_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"openssl\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libdw1_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libdw1\",\"version\":\"\ - UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libsystemd0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libsystemd0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"apt_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"apt\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"linux-azure_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"linux-azure\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"python2.7-minimal_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python2.7-minimal\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpam-cap_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libpam-cap\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libsqlite3-0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libsqlite3-0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpython3.6-stdlib_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpython3.6-stdlib\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libelf1_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"libelf1\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"python3-urllib3_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"python3-urllib3\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libirs160_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libirs160\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"linux-image-azure_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"linux-image-azure\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"bind9-host_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"bind9-host\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libavahi-common-data_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libavahi-common-data\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"open-iscsi_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"open-iscsi\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"dnsutils_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"dnsutils\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libavahi-common3_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libavahi-common3\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libpython2.7_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libpython2.7\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libncurses5_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libncurses5\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"python2.7_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"python2.7\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"dnsmasq-base_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"dnsmasq-base\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libc6_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libc6\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libpython3.6_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libpython3.6\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"python3.6_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python3.6\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"linux-headers-azure_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"linux-headers-azure\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"open-vm-tools_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"open-vm-tools\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"openssh-sftp-server_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"openssh-sftp-server\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"gawk_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"gawk\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libk5crypto3_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libk5crypto3\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libisc169_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libisc169\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"python3-idna_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python3-idna\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"udev_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"udev\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"locales_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"locales\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"passwd_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"passwd\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"procps_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"procps\",\"version\":\"\ - UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libklibc_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libklibc\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpam-runtime_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpam-runtime\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libapt-pkg5.0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libapt-pkg5.0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libncursesw5_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libncursesw5\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libprocps6_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libprocps6\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libx11-6_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libx11-6\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"python3-requests_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"python3-requests\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libudev1_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libudev1\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libapparmor1_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libapparmor1\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"lxd_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"lxd\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"linux-cloud-tools-common_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"linux-cloud-tools-common\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"krb5-locales_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"krb5-locales\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"python3.6-minimal_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python3.6-minimal\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libisc-export169_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libisc-export169\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"python3-cryptography_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python3-cryptography\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"busybox-static_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"busybox-static\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libc-bin_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libc-bin\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libtinfo5_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libtinfo5\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libkrb5support0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libkrb5support0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"linux-tools-azure_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"linux-tools-azure\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libcap2_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"libcap2\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"tar_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"tar\",\"version\":\"UA_ESM_Required\"\ - ,\"classifications\":[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\"\ - ,\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"systemd-sysv_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"systemd-sysv\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libcap2-bin_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libcap2-bin\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libldap-common_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libldap-common\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"liblwres160_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"liblwres160\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"vim-runtime_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"vim-runtime\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"vim_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"vim\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libpam-systemd_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libpam-systemd\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"distro-info-data_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"distro-info-data\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"ncurses-term_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"ncurses-term\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"systemd_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"systemd\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"login_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"login\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"xxd_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"xxd\",\"version\":\"UA_ESM_Required\"\ - ,\"classifications\":[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\"\ - ,\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"ncurses-bin_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"ncurses-bin\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpam-modules-bin_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpam-modules-bin\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"openssh-server_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"openssh-server\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"apt-utils_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"apt-utils\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libx11-data_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libx11-data\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"openssh-client_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"openssh-client\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libdns-export1100_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libdns-export1100\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libnss-systemd_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libnss-systemd\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"linux-cloud-tools-azure_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"linux-cloud-tools-azure\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libglib2.0-data_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libglib2.0-data\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"ncurses-base_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"ncurses-base\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libxml2_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"libxml2\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libpython2.7-minimal_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libpython2.7-minimal\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"multiarch-support_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"multiarch-support\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libgnutls30_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libgnutls30\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"vim-tiny_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"vim-tiny\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"apparmor_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"apparmor\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"dns-root-data_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"dns-root-data\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libisccc160_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libisccc160\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"wget_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"wget\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"\ - Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"linux-tools-common_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"linux-tools-common\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libssl1.1_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libssl1.1\",\"version\"\ - :\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"libbind9-160_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libbind9-160\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"python3-jinja2_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"python3-jinja2\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"accountsservice_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"accountsservice\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libdns1100_UA_ESM_Required_Ubuntu_18.04\",\"\ - name\":\"libdns1100\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libpython2.7-stdlib_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libpython2.7-stdlib\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libavahi-client3_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libavahi-client3\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"curl_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"curl\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"klibc-utils_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"klibc-utils\",\"\ - version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"lxd-client_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"lxd-client\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libglib2.0-0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libglib2.0-0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"uidmap_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"uidmap\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"libcurl3-gnutls_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"libcurl3-gnutls\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"less_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"less\",\"version\":\"UA_ESM_Required\"\ - ,\"classifications\":[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\"\ - ,\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libaccountsservice0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libaccountsservice0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"libssl1.0.0_UA_ESM_Required_Ubuntu_18.04\"\ - ,\"name\":\"libssl1.0.0\",\"version\":\"UA_ESM_Required\",\"classifications\"\ - :[\"Security-ESM\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\"\ - :\"0001-01-01T00:00:00+00:00\",\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\ - ,\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\",\"assessmentState\"\ - :\"Available\"},{\"patchId\":\"tzdata_UA_ESM_Required_Ubuntu_18.04\",\"name\"\ - :\"tzdata\",\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"\ - ],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"busybox-initramfs_UA_ESM_Required_Ubuntu_18.04\",\"name\":\"busybox-initramfs\"\ - ,\"version\":\"UA_ESM_Required\",\"classifications\":[\"Security-ESM\"],\"\ - rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"update-manager-core_1:18.04.12_Ubuntu_18.04\",\"name\":\"update-manager-core\"\ - ,\"version\":\"1:18.04.12\",\"classifications\":[\"Other\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"update-notifier-common_3.192.1.21_Ubuntu_18.04\"\ - ,\"name\":\"update-notifier-common\",\"version\":\"3.192.1.21\",\"classifications\"\ - :[\"Other\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"ubuntu-advantage-tools_32.3.1~18.04_Ubuntu_18.04\",\"name\":\"ubuntu-advantage-tools\"\ - ,\"version\":\"32.3.1~18.04\",\"classifications\":[\"Other\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"motd-news-config_10.1ubuntu2.12_Ubuntu_18.04\"\ - ,\"name\":\"motd-news-config\",\"version\":\"10.1ubuntu2.12\",\"classifications\"\ - :[\"Other\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"python3-update-manager_1:18.04.12_Ubuntu_18.04\",\"name\":\"python3-update-manager\"\ - ,\"version\":\"1:18.04.12\",\"classifications\":[\"Other\"],\"rebootBehavior\"\ - :\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"},{\"patchId\":\"ubuntu-pro-client-l10n_32.3.1~18.04_Ubuntu_18.04\"\ - ,\"name\":\"ubuntu-pro-client-l10n\",\"version\":\"32.3.1~18.04\",\"classifications\"\ - :[\"Other\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\"\ - ,\"activityId\":\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\"\ - :\"2024-08-26T09:46:46+00:00\",\"assessmentState\":\"Available\"},{\"patchId\"\ - :\"base-files_10.1ubuntu2.12_Ubuntu_18.04\",\"name\":\"base-files\",\"version\"\ - :\"10.1ubuntu2.12\",\"classifications\":[\"Other\"],\"rebootBehavior\":\"\ - NeverReboots\",\"publishedDate\":\"0001-01-01T00:00:00+00:00\",\"activityId\"\ - :\"a0de3d96-56fe-425d-8b78-03bbe23af5a0\",\"lastModifiedDateTime\":\"2024-08-26T09:46:46+00:00\"\ - ,\"assessmentState\":\"Available\"}],\"error\":{\"details\":[{\"code\":\"\ - UA_ESM_REQUIRED\",\"message\":\"124 patches requires Ubuntu Pro for Infrastructure\ - \ with Extended Security Maintenance\"}],\"code\":\"1\",\"message\":\"1 error/s\ - \ reported. The latest 1 error/s are shared in detail. To view all errors,\ - \ review this log file on the machine: /var/log/azure/Microsoft.CPlat.Core.LinuxPatchExtension/0.core.log\"\ - }}\r\n },\r\n \"name\": \"a0de3d96-56fe-425d-8b78-03bbe23af5a0\"\r\n}" + string: "{\r\n \"startTime\": \"2024-12-26T06:45:19.0931061+00:00\",\r\n \"endTime\": + \"2024-12-26T06:48:20.5791606+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\r\n \"status\": \"Succeeded\",\r\n + \ \"assessmentActivityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n + \ \"rebootPending\": false,\r\n \"criticalAndSecurityPatchCount\": 132,\r\n + \ \"otherPatchCount\": 8,\r\n \"startDateTime\": \"2024-12-26T06:45:28.6557062+00:00\",\r\n + \ \"availablePatches\": [\r\n {\r\n \"patchId\": \"distro-info-data_0.37ubuntu0.18_Ubuntu_18.04\",\r\n + \ \"name\": \"distro-info-data\",\r\n \"version\": \"0.37ubuntu0.18\",\r\n + \ \"classifications\": [\r\n \"Security\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam0g_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam0g\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"screen_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"screen\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libkrb5-3_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libkrb5-3\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libgssapi-krb5-2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libgssapi-krb5-2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython3.6-minimal_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython3.6-minimal\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libnghttp2-14_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libnghttp2-14\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libisccfg160_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libisccfg160\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libcups2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libcups2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"vim-common_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"vim-common\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libcurl4_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libcurl4\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libapt-inst2.0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libapt-inst2.0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libldap-2.4-2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libldap-2.4-2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam-modules_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam-modules\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"openssl_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"openssl\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libdw1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libdw1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"git-man_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"git-man\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libsystemd0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libsystemd0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"apt_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"apt\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-azure_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-azure\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python2.7-minimal_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python2.7-minimal\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam-cap_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam-cap\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libsqlite3-0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libsqlite3-0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython3.6-stdlib_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython3.6-stdlib\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libelf1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libelf1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-urllib3_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-urllib3\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libirs160_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libirs160\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-image-azure_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-image-azure\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"bind9-host_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"bind9-host\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libavahi-common-data_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libavahi-common-data\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"open-iscsi_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"open-iscsi\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"dnsutils_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"dnsutils\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libavahi-common3_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libavahi-common3\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython2.7_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython2.7\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libncurses5_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libncurses5\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python2.7_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python2.7\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"dnsmasq-base_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"dnsmasq-base\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libc6_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libc6\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"nano_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"nano\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython3.6_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython3.6\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3.6_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3.6\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-headers-azure_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-headers-azure\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"open-vm-tools_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"open-vm-tools\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"git_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"git\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"openssh-sftp-server_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"openssh-sftp-server\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"gawk_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"gawk\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libk5crypto3_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libk5crypto3\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libisc169_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libisc169\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-idna_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-idna\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"udev_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"udev\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"locales_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"locales\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"passwd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"passwd\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"procps_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"procps\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libklibc_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libklibc\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam-runtime_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam-runtime\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libapt-pkg5.0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libapt-pkg5.0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libncursesw5_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libncursesw5\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libprocps6_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libprocps6\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libx11-6_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libx11-6\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-requests_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-requests\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libexpat1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libexpat1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libudev1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libudev1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libapparmor1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libapparmor1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"lxd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"lxd\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-cloud-tools-common_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-cloud-tools-common\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"krb5-locales_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"krb5-locales\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-twisted_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-twisted\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3.6-minimal_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3.6-minimal\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-twisted-bin_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-twisted-bin\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libisc-export169_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libisc-export169\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-cryptography_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-cryptography\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"busybox-static_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"busybox-static\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libc-bin_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libc-bin\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libtinfo5_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libtinfo5\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libkrb5support0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libkrb5support0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-tools-azure_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-tools-azure\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libcap2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libcap2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"tar_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"tar\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"systemd-sysv_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"systemd-sysv\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libcap2-bin_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libcap2-bin\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libldap-common_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libldap-common\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"liblwres160_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"liblwres160\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"vim-runtime_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"vim-runtime\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-configobj_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-configobj\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"vim_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"vim\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam-systemd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam-systemd\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"distro-info-data_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"distro-info-data\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ncurses-term_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"ncurses-term\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-pkg-resources_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-pkg-resources\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"systemd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"systemd\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"login_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"login\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"xxd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"xxd\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ncurses-bin_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"ncurses-bin\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpam-modules-bin_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpam-modules-bin\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"openssh-server_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"openssh-server\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"apt-utils_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"apt-utils\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libx11-data_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libx11-data\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"openssh-client_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"openssh-client\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libdns-export1100_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libdns-export1100\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libnss-systemd_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libnss-systemd\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-cloud-tools-azure_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-cloud-tools-azure\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libglib2.0-data_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libglib2.0-data\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ncurses-base_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"ncurses-base\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libxml2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libxml2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython2.7-minimal_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython2.7-minimal\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"multiarch-support_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"multiarch-support\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libgnutls30_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libgnutls30\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ca-certificates_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"ca-certificates\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"vim-tiny_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"vim-tiny\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"apparmor_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"apparmor\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"dns-root-data_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"dns-root-data\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libisccc160_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libisccc160\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"wget_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"wget\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"linux-tools-common_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"linux-tools-common\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libssl1.1_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libssl1.1\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libbind9-160_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libbind9-160\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-jinja2_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-jinja2\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"accountsservice_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"accountsservice\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libdns1100_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libdns1100\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libpython2.7-stdlib_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libpython2.7-stdlib\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libavahi-client3_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libavahi-client3\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"curl_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"curl\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"klibc-utils_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"klibc-utils\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"lxd-client_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"lxd-client\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libglib2.0-0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libglib2.0-0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"uidmap_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"uidmap\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libcurl3-gnutls_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libcurl3-gnutls\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"less_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"less\",\r\n \"version\": \"UA_ESM_Required\",\r\n \"classifications\": + [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": \"NeverReboots\",\r\n + \ \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"activityId\": + \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libaccountsservice0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libaccountsservice0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"libssl1.0.0_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"libssl1.0.0\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"tzdata_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"tzdata\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"busybox-initramfs_UA_ESM_Required_Ubuntu_18.04\",\r\n + \ \"name\": \"busybox-initramfs\",\r\n \"version\": \"UA_ESM_Required\",\r\n + \ \"classifications\": [\r\n \"Security-ESM\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"update-manager-core_1:18.04.13.1_Ubuntu_18.04\",\r\n + \ \"name\": \"update-manager-core\",\r\n \"version\": \"1:18.04.13.1\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"update-notifier-common_3.192.1.21_Ubuntu_18.04\",\r\n + \ \"name\": \"update-notifier-common\",\r\n \"version\": \"3.192.1.21\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ubuntu-advantage-tools_34~18.04_Ubuntu_18.04\",\r\n + \ \"name\": \"ubuntu-advantage-tools\",\r\n \"version\": \"34~18.04\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"motd-news-config_10.1ubuntu2.12_Ubuntu_18.04\",\r\n + \ \"name\": \"motd-news-config\",\r\n \"version\": \"10.1ubuntu2.12\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"python3-update-manager_1:18.04.13.1_Ubuntu_18.04\",\r\n + \ \"name\": \"python3-update-manager\",\r\n \"version\": \"1:18.04.13.1\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"sosreport_4.4-1ubuntu0.18.04.3_Ubuntu_18.04\",\r\n + \ \"name\": \"sosreport\",\r\n \"version\": \"4.4-1ubuntu0.18.04.3\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"ubuntu-pro-client-l10n_34~18.04_Ubuntu_18.04\",\r\n + \ \"name\": \"ubuntu-pro-client-l10n\",\r\n \"version\": \"34~18.04\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ },\r\n {\r\n \"patchId\": \"base-files_10.1ubuntu2.12_Ubuntu_18.04\",\r\n + \ \"name\": \"base-files\",\r\n \"version\": \"10.1ubuntu2.12\",\r\n + \ \"classifications\": [\r\n \"Other\"\r\n ],\r\n \"rebootBehavior\": + \"NeverReboots\",\r\n \"publishedDate\": \"0001-01-01T00:00:00+00:00\",\r\n + \ \"activityId\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\",\r\n \"lastModifiedDateTime\": + \"2024-12-26T06:47:42+00:00\",\r\n \"assessmentState\": \"Available\"\r\n + \ }\r\n ],\r\n \"error\": {\r\n \"details\": [\r\n {\r\n \"code\": + \"UA_ESM_REQUIRED\",\r\n \"message\": \"133 patches requires Ubuntu + Pro for Infrastructure with Extended Security Maintenance\"\r\n }\r\n + \ ],\r\n \"code\": \"1\",\r\n \"message\": \"1 error/s reported. The + latest 1 error/s are shared in detail. To view all errors, review this log + file on the machine: /var/log/azure/Microsoft.CPlat.Core.LinuxPatchExtension/0.core.log\"\r\n + \ }\r\n}\r\n },\r\n \"name\": \"d2a0d3e9-57a9-48fa-9d36-97d3de415551\"\r\n}" headers: cache-control: - no-cache content-length: - - '46214' + - '65362' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:47:25 GMT + - Thu, 26 Dec 2024 06:48:22 GMT expires: - '-1' pragma: @@ -5030,12 +5362,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14989 + - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: B5564C7CD37F4E139DD5272323C320A3 Ref B: TYO201100117029 Ref C: 2024-08-26T09:47:25Z' + - 'Ref A: F4128BC34137481DADD484649A051863 Ref B: MAA201060516031 Ref C: 2024-12-26T06:48:22Z' status: code: 200 message: '' @@ -5053,12 +5387,12 @@ 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.67.0 azsdk-python-core/1.31.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a0de3d96-56fe-425d-8b78-03bbe23af5a0?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638602622584297411&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=aT9F95d-CYEADGrnM9vBk-iQ4lLQ5xtnT1Sdl1GfuYAdFkPLbkfBHsBwMjpens9xZYcXek_DzeuBkzIsSYtSpi0r3l91m1WejJNsrAbIoNP9QyAVSy2gkYX4a4ssLTjtS3-sYeSvylFBNiLo78BRict2jAA2BURP2Rhv4AzWspz-7jYq3_7tI5Uk7Y_J32icPp-5JBK0cjftyP__CSDKKj1QIvQ1ndPSSZ_8-IsZULIPGOOB90DYLMZ9CKTbCY29SzXgybsjwcbCI4mthm70NIBognkNiZxGVFJ8FxfPYz6CvCGahrC8bkaZfHmldKllX3UuQxzV_HlBaXwBM5mitw&h=ZqaW9kubdFCncJ10wmigVVYl2xfPj5q4GpWajbCLNg8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d2a0d3e9-57a9-48fa-9d36-97d3de415551?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638707923192839440&c=MIIINDCCBxygAwIBAgITOgQIaighXFnDPigDxQAEBAhqKDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQxMTA2MDIzNzQ5WhcNMjUxMTAxMDIzNzQ5WjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0i1k-UCAu7kX3vQYFb-teyJhiq7vGeJRH2KqBylgDRG9XX688GXVKHB1RlqQmdqU4yFVBmQjC83sSzpFhFaOnL7bjbi06zegEcNCxqgq-MDMbHbJRPTt9D7mGJXbXfD82kcsIJa6_9oChV_lmSTBCgyvW-PvTnwLsztRqSbdNWjZhLCiKnwwb6kUsAuq28tjq7kp07rNeyPCeyAccrWWGOyI7K5A3kAzgd5Xdqs_V2aXuqVPxG_T6SHwDdqamRDOV4pEi2yYS6ujPtR7QbxlVuYThl83n8pxkAK7HJLLqILjK6gxvt5eOTFHLyBuXY_IJX-J66tGMQWyJm1xILP9cQIDAQABo4IE1DCCBNAwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAdoGCCsGAQUFBwEBBIIBzDCCAcgwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDEuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDQuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwHQYDVR0OBBYEFAKriQeO8eD2nDTMPGYZMZSHuDBzMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCATUGA1UdHwSCASwwggEoMIIBJKCCASCgggEchkJodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmyGNGh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDATAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFOXZm2f8-Oy6u_DAqJ2KV4i53z5jMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEACtjPtUkpEdSysnJuHfnygSWANpq0sg6U06i26VWkIZZUg5TU0HeIgjps8JYeZHJe4-tF2TTvL06KhYDJcPGIOoRhDdPvT4PqMsB80fSDK6Xkt5t3YqDLFmY7QZdPX_uvUETAFG7B5lNiRCc5cbQ7RDBO5NnqH0UDLVnSOMuvVLHs9sbm3LQBB5SFu6mYrZr-ORc_27ui1m7BBlFsWUtZ2XxXwG4ZkyagYs3VU_QExfmv-mZSo2KwHHlEVC8fRD5QocB2qiMiZB7nEMWOjLpw8TImrZt20djxt4Fje1GyEEFh8Kcz_T_03GtvJyqzdc-FB0EFeEj32oPTG2TMRLUs2A&s=W2u8RaVr3TKjFbPGulE5kMu_ARAphLkdo5thIksu3hUDcdh0OX9jJ9mz7O7NlQddDgk9OQzgMhuDuKHXIEjHGHd97-2oj8Oawpu3uRmQEi1GwCkseQ-W7sFjYEUzn_MFBq6LH3vJkIVFApvnuf0V8DUimJ8NlvkHd0T-oOZ_yXb3HbcaG9CTXBNN5UbCwHlor5BIaTpnIG3BHNtBxUEFEOoJgNLt4WGFphmXhOLkZeCYF216S9qmmibvqbmyzVKblw1CGoIwrtYgpwLP5hFKXVgSbGVrXNz8En5GGCnkfYz4Hk24auv3z5xr-ysTjUDCSfgdG3vc10C4KFp3DuPQfQ&h=PdSyHVZTkUEKEARUgqbXqTSFjYn9FY_oF2AI3F3Qbdw response: body: - string: '{"status":"Succeeded","assessmentActivityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","rebootPending":false,"criticalAndSecurityPatchCount":123,"otherPatchCount":7,"startDateTime":"2024-08-26T09:44:27.8058633+00:00","availablePatches":[{"patchId":"distro-info-data_0.37ubuntu0.18_Ubuntu_18.04","name":"distro-info-data","version":"0.37ubuntu0.18","classifications":["Security"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam0g_UA_ESM_Required_Ubuntu_18.04","name":"libpam0g","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"screen_UA_ESM_Required_Ubuntu_18.04","name":"screen","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libkrb5-3_UA_ESM_Required_Ubuntu_18.04","name":"libkrb5-3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libgssapi-krb5-2_UA_ESM_Required_Ubuntu_18.04","name":"libgssapi-krb5-2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython3.6-minimal_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libnghttp2-14_UA_ESM_Required_Ubuntu_18.04","name":"libnghttp2-14","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libisccfg160_UA_ESM_Required_Ubuntu_18.04","name":"libisccfg160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libcups2_UA_ESM_Required_Ubuntu_18.04","name":"libcups2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"vim-common_UA_ESM_Required_Ubuntu_18.04","name":"vim-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libcurl4_UA_ESM_Required_Ubuntu_18.04","name":"libcurl4","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libapt-inst2.0_UA_ESM_Required_Ubuntu_18.04","name":"libapt-inst2.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libldap-2.4-2_UA_ESM_Required_Ubuntu_18.04","name":"libldap-2.4-2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam-modules_UA_ESM_Required_Ubuntu_18.04","name":"libpam-modules","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"openssl_UA_ESM_Required_Ubuntu_18.04","name":"openssl","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libdw1_UA_ESM_Required_Ubuntu_18.04","name":"libdw1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libsystemd0_UA_ESM_Required_Ubuntu_18.04","name":"libsystemd0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"apt_UA_ESM_Required_Ubuntu_18.04","name":"apt","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python2.7-minimal_UA_ESM_Required_Ubuntu_18.04","name":"python2.7-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam-cap_UA_ESM_Required_Ubuntu_18.04","name":"libpam-cap","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libsqlite3-0_UA_ESM_Required_Ubuntu_18.04","name":"libsqlite3-0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython3.6-stdlib_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6-stdlib","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libelf1_UA_ESM_Required_Ubuntu_18.04","name":"libelf1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-urllib3_UA_ESM_Required_Ubuntu_18.04","name":"python3-urllib3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libirs160_UA_ESM_Required_Ubuntu_18.04","name":"libirs160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-image-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-image-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"bind9-host_UA_ESM_Required_Ubuntu_18.04","name":"bind9-host","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libavahi-common-data_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-common-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"open-iscsi_UA_ESM_Required_Ubuntu_18.04","name":"open-iscsi","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"dnsutils_UA_ESM_Required_Ubuntu_18.04","name":"dnsutils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libavahi-common3_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-common3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython2.7_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libncurses5_UA_ESM_Required_Ubuntu_18.04","name":"libncurses5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python2.7_UA_ESM_Required_Ubuntu_18.04","name":"python2.7","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"dnsmasq-base_UA_ESM_Required_Ubuntu_18.04","name":"dnsmasq-base","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libc6_UA_ESM_Required_Ubuntu_18.04","name":"libc6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython3.6_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3.6_UA_ESM_Required_Ubuntu_18.04","name":"python3.6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-headers-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-headers-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"open-vm-tools_UA_ESM_Required_Ubuntu_18.04","name":"open-vm-tools","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"openssh-sftp-server_UA_ESM_Required_Ubuntu_18.04","name":"openssh-sftp-server","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"gawk_UA_ESM_Required_Ubuntu_18.04","name":"gawk","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libk5crypto3_UA_ESM_Required_Ubuntu_18.04","name":"libk5crypto3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libisc169_UA_ESM_Required_Ubuntu_18.04","name":"libisc169","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-idna_UA_ESM_Required_Ubuntu_18.04","name":"python3-idna","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"udev_UA_ESM_Required_Ubuntu_18.04","name":"udev","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"locales_UA_ESM_Required_Ubuntu_18.04","name":"locales","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"passwd_UA_ESM_Required_Ubuntu_18.04","name":"passwd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"procps_UA_ESM_Required_Ubuntu_18.04","name":"procps","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libklibc_UA_ESM_Required_Ubuntu_18.04","name":"libklibc","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam-runtime_UA_ESM_Required_Ubuntu_18.04","name":"libpam-runtime","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libapt-pkg5.0_UA_ESM_Required_Ubuntu_18.04","name":"libapt-pkg5.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libncursesw5_UA_ESM_Required_Ubuntu_18.04","name":"libncursesw5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libprocps6_UA_ESM_Required_Ubuntu_18.04","name":"libprocps6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libx11-6_UA_ESM_Required_Ubuntu_18.04","name":"libx11-6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-requests_UA_ESM_Required_Ubuntu_18.04","name":"python3-requests","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libudev1_UA_ESM_Required_Ubuntu_18.04","name":"libudev1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libapparmor1_UA_ESM_Required_Ubuntu_18.04","name":"libapparmor1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"lxd_UA_ESM_Required_Ubuntu_18.04","name":"lxd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-cloud-tools-common_UA_ESM_Required_Ubuntu_18.04","name":"linux-cloud-tools-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"krb5-locales_UA_ESM_Required_Ubuntu_18.04","name":"krb5-locales","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3.6-minimal_UA_ESM_Required_Ubuntu_18.04","name":"python3.6-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libisc-export169_UA_ESM_Required_Ubuntu_18.04","name":"libisc-export169","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-cryptography_UA_ESM_Required_Ubuntu_18.04","name":"python3-cryptography","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"busybox-static_UA_ESM_Required_Ubuntu_18.04","name":"busybox-static","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libc-bin_UA_ESM_Required_Ubuntu_18.04","name":"libc-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libtinfo5_UA_ESM_Required_Ubuntu_18.04","name":"libtinfo5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libkrb5support0_UA_ESM_Required_Ubuntu_18.04","name":"libkrb5support0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-tools-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-tools-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libcap2_UA_ESM_Required_Ubuntu_18.04","name":"libcap2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"tar_UA_ESM_Required_Ubuntu_18.04","name":"tar","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"systemd-sysv_UA_ESM_Required_Ubuntu_18.04","name":"systemd-sysv","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libcap2-bin_UA_ESM_Required_Ubuntu_18.04","name":"libcap2-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libldap-common_UA_ESM_Required_Ubuntu_18.04","name":"libldap-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"liblwres160_UA_ESM_Required_Ubuntu_18.04","name":"liblwres160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"vim-runtime_UA_ESM_Required_Ubuntu_18.04","name":"vim-runtime","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"vim_UA_ESM_Required_Ubuntu_18.04","name":"vim","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam-systemd_UA_ESM_Required_Ubuntu_18.04","name":"libpam-systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"distro-info-data_UA_ESM_Required_Ubuntu_18.04","name":"distro-info-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"ncurses-term_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-term","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"systemd_UA_ESM_Required_Ubuntu_18.04","name":"systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"login_UA_ESM_Required_Ubuntu_18.04","name":"login","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"xxd_UA_ESM_Required_Ubuntu_18.04","name":"xxd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"ncurses-bin_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpam-modules-bin_UA_ESM_Required_Ubuntu_18.04","name":"libpam-modules-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"openssh-server_UA_ESM_Required_Ubuntu_18.04","name":"openssh-server","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"apt-utils_UA_ESM_Required_Ubuntu_18.04","name":"apt-utils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libx11-data_UA_ESM_Required_Ubuntu_18.04","name":"libx11-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"openssh-client_UA_ESM_Required_Ubuntu_18.04","name":"openssh-client","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libdns-export1100_UA_ESM_Required_Ubuntu_18.04","name":"libdns-export1100","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libnss-systemd_UA_ESM_Required_Ubuntu_18.04","name":"libnss-systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-cloud-tools-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-cloud-tools-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libglib2.0-data_UA_ESM_Required_Ubuntu_18.04","name":"libglib2.0-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"ncurses-base_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-base","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libxml2_UA_ESM_Required_Ubuntu_18.04","name":"libxml2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython2.7-minimal_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"multiarch-support_UA_ESM_Required_Ubuntu_18.04","name":"multiarch-support","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libgnutls30_UA_ESM_Required_Ubuntu_18.04","name":"libgnutls30","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"vim-tiny_UA_ESM_Required_Ubuntu_18.04","name":"vim-tiny","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"apparmor_UA_ESM_Required_Ubuntu_18.04","name":"apparmor","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"dns-root-data_UA_ESM_Required_Ubuntu_18.04","name":"dns-root-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libisccc160_UA_ESM_Required_Ubuntu_18.04","name":"libisccc160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"wget_UA_ESM_Required_Ubuntu_18.04","name":"wget","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"linux-tools-common_UA_ESM_Required_Ubuntu_18.04","name":"linux-tools-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libssl1.1_UA_ESM_Required_Ubuntu_18.04","name":"libssl1.1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libbind9-160_UA_ESM_Required_Ubuntu_18.04","name":"libbind9-160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-jinja2_UA_ESM_Required_Ubuntu_18.04","name":"python3-jinja2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"accountsservice_UA_ESM_Required_Ubuntu_18.04","name":"accountsservice","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libdns1100_UA_ESM_Required_Ubuntu_18.04","name":"libdns1100","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libpython2.7-stdlib_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7-stdlib","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libavahi-client3_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-client3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"curl_UA_ESM_Required_Ubuntu_18.04","name":"curl","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"klibc-utils_UA_ESM_Required_Ubuntu_18.04","name":"klibc-utils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"lxd-client_UA_ESM_Required_Ubuntu_18.04","name":"lxd-client","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libglib2.0-0_UA_ESM_Required_Ubuntu_18.04","name":"libglib2.0-0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"uidmap_UA_ESM_Required_Ubuntu_18.04","name":"uidmap","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libcurl3-gnutls_UA_ESM_Required_Ubuntu_18.04","name":"libcurl3-gnutls","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"less_UA_ESM_Required_Ubuntu_18.04","name":"less","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libaccountsservice0_UA_ESM_Required_Ubuntu_18.04","name":"libaccountsservice0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"libssl1.0.0_UA_ESM_Required_Ubuntu_18.04","name":"libssl1.0.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"tzdata_UA_ESM_Required_Ubuntu_18.04","name":"tzdata","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"busybox-initramfs_UA_ESM_Required_Ubuntu_18.04","name":"busybox-initramfs","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"update-manager-core_1:18.04.12_Ubuntu_18.04","name":"update-manager-core","version":"1:18.04.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"update-notifier-common_3.192.1.21_Ubuntu_18.04","name":"update-notifier-common","version":"3.192.1.21","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"ubuntu-advantage-tools_32.3.1~18.04_Ubuntu_18.04","name":"ubuntu-advantage-tools","version":"32.3.1~18.04","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"motd-news-config_10.1ubuntu2.12_Ubuntu_18.04","name":"motd-news-config","version":"10.1ubuntu2.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"python3-update-manager_1:18.04.12_Ubuntu_18.04","name":"python3-update-manager","version":"1:18.04.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"ubuntu-pro-client-l10n_32.3.1~18.04_Ubuntu_18.04","name":"ubuntu-pro-client-l10n","version":"32.3.1~18.04","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"},{"patchId":"base-files_10.1ubuntu2.12_Ubuntu_18.04","name":"base-files","version":"10.1ubuntu2.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"a0de3d96-56fe-425d-8b78-03bbe23af5a0","lastModifiedDateTime":"2024-08-26T09:46:46+00:00","assessmentState":"Available"}],"error":{"details":[{"code":"UA_ESM_REQUIRED","message":"124 + string: '{"status":"Succeeded","assessmentActivityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","rebootPending":false,"criticalAndSecurityPatchCount":132,"otherPatchCount":8,"startDateTime":"2024-12-26T06:45:28.6557062+00:00","availablePatches":[{"patchId":"distro-info-data_0.37ubuntu0.18_Ubuntu_18.04","name":"distro-info-data","version":"0.37ubuntu0.18","classifications":["Security"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam0g_UA_ESM_Required_Ubuntu_18.04","name":"libpam0g","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"screen_UA_ESM_Required_Ubuntu_18.04","name":"screen","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libkrb5-3_UA_ESM_Required_Ubuntu_18.04","name":"libkrb5-3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libgssapi-krb5-2_UA_ESM_Required_Ubuntu_18.04","name":"libgssapi-krb5-2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython3.6-minimal_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libnghttp2-14_UA_ESM_Required_Ubuntu_18.04","name":"libnghttp2-14","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libisccfg160_UA_ESM_Required_Ubuntu_18.04","name":"libisccfg160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libcups2_UA_ESM_Required_Ubuntu_18.04","name":"libcups2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"vim-common_UA_ESM_Required_Ubuntu_18.04","name":"vim-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libcurl4_UA_ESM_Required_Ubuntu_18.04","name":"libcurl4","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libapt-inst2.0_UA_ESM_Required_Ubuntu_18.04","name":"libapt-inst2.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libldap-2.4-2_UA_ESM_Required_Ubuntu_18.04","name":"libldap-2.4-2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam-modules_UA_ESM_Required_Ubuntu_18.04","name":"libpam-modules","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"openssl_UA_ESM_Required_Ubuntu_18.04","name":"openssl","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libdw1_UA_ESM_Required_Ubuntu_18.04","name":"libdw1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"git-man_UA_ESM_Required_Ubuntu_18.04","name":"git-man","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libsystemd0_UA_ESM_Required_Ubuntu_18.04","name":"libsystemd0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"apt_UA_ESM_Required_Ubuntu_18.04","name":"apt","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python2.7-minimal_UA_ESM_Required_Ubuntu_18.04","name":"python2.7-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam-cap_UA_ESM_Required_Ubuntu_18.04","name":"libpam-cap","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libsqlite3-0_UA_ESM_Required_Ubuntu_18.04","name":"libsqlite3-0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython3.6-stdlib_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6-stdlib","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libelf1_UA_ESM_Required_Ubuntu_18.04","name":"libelf1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-urllib3_UA_ESM_Required_Ubuntu_18.04","name":"python3-urllib3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libirs160_UA_ESM_Required_Ubuntu_18.04","name":"libirs160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-image-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-image-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"bind9-host_UA_ESM_Required_Ubuntu_18.04","name":"bind9-host","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libavahi-common-data_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-common-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"open-iscsi_UA_ESM_Required_Ubuntu_18.04","name":"open-iscsi","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"dnsutils_UA_ESM_Required_Ubuntu_18.04","name":"dnsutils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libavahi-common3_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-common3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython2.7_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libncurses5_UA_ESM_Required_Ubuntu_18.04","name":"libncurses5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python2.7_UA_ESM_Required_Ubuntu_18.04","name":"python2.7","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"dnsmasq-base_UA_ESM_Required_Ubuntu_18.04","name":"dnsmasq-base","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libc6_UA_ESM_Required_Ubuntu_18.04","name":"libc6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"nano_UA_ESM_Required_Ubuntu_18.04","name":"nano","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython3.6_UA_ESM_Required_Ubuntu_18.04","name":"libpython3.6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3.6_UA_ESM_Required_Ubuntu_18.04","name":"python3.6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-headers-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-headers-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"open-vm-tools_UA_ESM_Required_Ubuntu_18.04","name":"open-vm-tools","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"git_UA_ESM_Required_Ubuntu_18.04","name":"git","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"openssh-sftp-server_UA_ESM_Required_Ubuntu_18.04","name":"openssh-sftp-server","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"gawk_UA_ESM_Required_Ubuntu_18.04","name":"gawk","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libk5crypto3_UA_ESM_Required_Ubuntu_18.04","name":"libk5crypto3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libisc169_UA_ESM_Required_Ubuntu_18.04","name":"libisc169","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-idna_UA_ESM_Required_Ubuntu_18.04","name":"python3-idna","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"udev_UA_ESM_Required_Ubuntu_18.04","name":"udev","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"locales_UA_ESM_Required_Ubuntu_18.04","name":"locales","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"passwd_UA_ESM_Required_Ubuntu_18.04","name":"passwd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"procps_UA_ESM_Required_Ubuntu_18.04","name":"procps","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libklibc_UA_ESM_Required_Ubuntu_18.04","name":"libklibc","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam-runtime_UA_ESM_Required_Ubuntu_18.04","name":"libpam-runtime","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libapt-pkg5.0_UA_ESM_Required_Ubuntu_18.04","name":"libapt-pkg5.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libncursesw5_UA_ESM_Required_Ubuntu_18.04","name":"libncursesw5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libprocps6_UA_ESM_Required_Ubuntu_18.04","name":"libprocps6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libx11-6_UA_ESM_Required_Ubuntu_18.04","name":"libx11-6","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-requests_UA_ESM_Required_Ubuntu_18.04","name":"python3-requests","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libexpat1_UA_ESM_Required_Ubuntu_18.04","name":"libexpat1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libudev1_UA_ESM_Required_Ubuntu_18.04","name":"libudev1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libapparmor1_UA_ESM_Required_Ubuntu_18.04","name":"libapparmor1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"lxd_UA_ESM_Required_Ubuntu_18.04","name":"lxd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-cloud-tools-common_UA_ESM_Required_Ubuntu_18.04","name":"linux-cloud-tools-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"krb5-locales_UA_ESM_Required_Ubuntu_18.04","name":"krb5-locales","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-twisted_UA_ESM_Required_Ubuntu_18.04","name":"python3-twisted","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3.6-minimal_UA_ESM_Required_Ubuntu_18.04","name":"python3.6-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-twisted-bin_UA_ESM_Required_Ubuntu_18.04","name":"python3-twisted-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libisc-export169_UA_ESM_Required_Ubuntu_18.04","name":"libisc-export169","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-cryptography_UA_ESM_Required_Ubuntu_18.04","name":"python3-cryptography","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"busybox-static_UA_ESM_Required_Ubuntu_18.04","name":"busybox-static","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libc-bin_UA_ESM_Required_Ubuntu_18.04","name":"libc-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libtinfo5_UA_ESM_Required_Ubuntu_18.04","name":"libtinfo5","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libkrb5support0_UA_ESM_Required_Ubuntu_18.04","name":"libkrb5support0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-tools-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-tools-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libcap2_UA_ESM_Required_Ubuntu_18.04","name":"libcap2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"tar_UA_ESM_Required_Ubuntu_18.04","name":"tar","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"systemd-sysv_UA_ESM_Required_Ubuntu_18.04","name":"systemd-sysv","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libcap2-bin_UA_ESM_Required_Ubuntu_18.04","name":"libcap2-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libldap-common_UA_ESM_Required_Ubuntu_18.04","name":"libldap-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"liblwres160_UA_ESM_Required_Ubuntu_18.04","name":"liblwres160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"vim-runtime_UA_ESM_Required_Ubuntu_18.04","name":"vim-runtime","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-configobj_UA_ESM_Required_Ubuntu_18.04","name":"python3-configobj","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"vim_UA_ESM_Required_Ubuntu_18.04","name":"vim","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam-systemd_UA_ESM_Required_Ubuntu_18.04","name":"libpam-systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"distro-info-data_UA_ESM_Required_Ubuntu_18.04","name":"distro-info-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ncurses-term_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-term","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-pkg-resources_UA_ESM_Required_Ubuntu_18.04","name":"python3-pkg-resources","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"systemd_UA_ESM_Required_Ubuntu_18.04","name":"systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"login_UA_ESM_Required_Ubuntu_18.04","name":"login","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"xxd_UA_ESM_Required_Ubuntu_18.04","name":"xxd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ncurses-bin_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpam-modules-bin_UA_ESM_Required_Ubuntu_18.04","name":"libpam-modules-bin","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"openssh-server_UA_ESM_Required_Ubuntu_18.04","name":"openssh-server","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"apt-utils_UA_ESM_Required_Ubuntu_18.04","name":"apt-utils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libx11-data_UA_ESM_Required_Ubuntu_18.04","name":"libx11-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"openssh-client_UA_ESM_Required_Ubuntu_18.04","name":"openssh-client","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libdns-export1100_UA_ESM_Required_Ubuntu_18.04","name":"libdns-export1100","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libnss-systemd_UA_ESM_Required_Ubuntu_18.04","name":"libnss-systemd","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-cloud-tools-azure_UA_ESM_Required_Ubuntu_18.04","name":"linux-cloud-tools-azure","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libglib2.0-data_UA_ESM_Required_Ubuntu_18.04","name":"libglib2.0-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ncurses-base_UA_ESM_Required_Ubuntu_18.04","name":"ncurses-base","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libxml2_UA_ESM_Required_Ubuntu_18.04","name":"libxml2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython2.7-minimal_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7-minimal","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"multiarch-support_UA_ESM_Required_Ubuntu_18.04","name":"multiarch-support","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libgnutls30_UA_ESM_Required_Ubuntu_18.04","name":"libgnutls30","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ca-certificates_UA_ESM_Required_Ubuntu_18.04","name":"ca-certificates","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"vim-tiny_UA_ESM_Required_Ubuntu_18.04","name":"vim-tiny","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"apparmor_UA_ESM_Required_Ubuntu_18.04","name":"apparmor","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"dns-root-data_UA_ESM_Required_Ubuntu_18.04","name":"dns-root-data","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libisccc160_UA_ESM_Required_Ubuntu_18.04","name":"libisccc160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"wget_UA_ESM_Required_Ubuntu_18.04","name":"wget","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"linux-tools-common_UA_ESM_Required_Ubuntu_18.04","name":"linux-tools-common","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libssl1.1_UA_ESM_Required_Ubuntu_18.04","name":"libssl1.1","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libbind9-160_UA_ESM_Required_Ubuntu_18.04","name":"libbind9-160","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-jinja2_UA_ESM_Required_Ubuntu_18.04","name":"python3-jinja2","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"accountsservice_UA_ESM_Required_Ubuntu_18.04","name":"accountsservice","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libdns1100_UA_ESM_Required_Ubuntu_18.04","name":"libdns1100","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libpython2.7-stdlib_UA_ESM_Required_Ubuntu_18.04","name":"libpython2.7-stdlib","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libavahi-client3_UA_ESM_Required_Ubuntu_18.04","name":"libavahi-client3","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"curl_UA_ESM_Required_Ubuntu_18.04","name":"curl","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"klibc-utils_UA_ESM_Required_Ubuntu_18.04","name":"klibc-utils","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"lxd-client_UA_ESM_Required_Ubuntu_18.04","name":"lxd-client","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libglib2.0-0_UA_ESM_Required_Ubuntu_18.04","name":"libglib2.0-0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"uidmap_UA_ESM_Required_Ubuntu_18.04","name":"uidmap","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libcurl3-gnutls_UA_ESM_Required_Ubuntu_18.04","name":"libcurl3-gnutls","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"less_UA_ESM_Required_Ubuntu_18.04","name":"less","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libaccountsservice0_UA_ESM_Required_Ubuntu_18.04","name":"libaccountsservice0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"libssl1.0.0_UA_ESM_Required_Ubuntu_18.04","name":"libssl1.0.0","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"tzdata_UA_ESM_Required_Ubuntu_18.04","name":"tzdata","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"busybox-initramfs_UA_ESM_Required_Ubuntu_18.04","name":"busybox-initramfs","version":"UA_ESM_Required","classifications":["Security-ESM"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"update-manager-core_1:18.04.13.1_Ubuntu_18.04","name":"update-manager-core","version":"1:18.04.13.1","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"update-notifier-common_3.192.1.21_Ubuntu_18.04","name":"update-notifier-common","version":"3.192.1.21","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ubuntu-advantage-tools_34~18.04_Ubuntu_18.04","name":"ubuntu-advantage-tools","version":"34~18.04","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"motd-news-config_10.1ubuntu2.12_Ubuntu_18.04","name":"motd-news-config","version":"10.1ubuntu2.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"python3-update-manager_1:18.04.13.1_Ubuntu_18.04","name":"python3-update-manager","version":"1:18.04.13.1","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"sosreport_4.4-1ubuntu0.18.04.3_Ubuntu_18.04","name":"sosreport","version":"4.4-1ubuntu0.18.04.3","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"ubuntu-pro-client-l10n_34~18.04_Ubuntu_18.04","name":"ubuntu-pro-client-l10n","version":"34~18.04","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"},{"patchId":"base-files_10.1ubuntu2.12_Ubuntu_18.04","name":"base-files","version":"10.1ubuntu2.12","classifications":["Other"],"rebootBehavior":"NeverReboots","publishedDate":"0001-01-01T00:00:00+00:00","activityId":"d2a0d3e9-57a9-48fa-9d36-97d3de415551","lastModifiedDateTime":"2024-12-26T06:47:42+00:00","assessmentState":"Available"}],"error":{"details":[{"code":"UA_ESM_REQUIRED","message":"133 patches requires Ubuntu Pro for Infrastructure with Extended Security Maintenance"}],"code":"1","message":"1 error/s reported. The latest 1 error/s are shared in detail. To view all errors, review this log file on the machine: /var/log/azure/Microsoft.CPlat.Core.LinuxPatchExtension/0.core.log"}}' @@ -5066,11 +5400,11 @@ interactions: cache-control: - no-cache content-length: - - '45989' + - '49482' content-type: - application/json; charset=utf-8 date: - - Mon, 26 Aug 2024 09:47:25 GMT + - Thu, 26 Dec 2024 06:48:22 GMT expires: - '-1' pragma: @@ -5081,12 +5415,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-need-to-refresh-epl-cache: + - 'False' x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14988 + - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 x-ms-ratelimit-remaining-subscription-global-reads: - '3749' x-msedge-ref: - - 'Ref A: F61430F9B82F49C586A31794957EEE6F Ref B: TYO201100117029 Ref C: 2024-08-26T09:47:25Z' + - 'Ref A: 3E6C176121034E569225307FD45CAA90 Ref B: MAA201060516031 Ref C: 2024-12-26T06:48:23Z' status: code: 200 message: ''