From 6985eb064666bb15200998a581fc527c8fa059be Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Mon, 2 Jun 2025 12:46:23 +0530 Subject: [PATCH 1/6] Added a new command and related update for continuous capture and its mapping --- .../Accounts/Utilities/CommandMappings.json | 1 + src/Network/Network/ChangeLog.md | 3 + .../Network/Models/PSPacketCaptureSettings.cs | 46 +++++++ ...ureNetworkWatcherPacketCaptureCommandV2.cs | 113 ++++++++++++++++-- .../NewPacketCaptureSettingsCommand.cs | 89 ++++++++++++++ 5 files changed, 244 insertions(+), 8 deletions(-) create mode 100644 src/Network/Network/Models/PSPacketCaptureSettings.cs create mode 100644 src/Network/Network/NetworkWatcher/PacketCapture/NewPacketCaptureSettingsCommand.cs diff --git a/src/Accounts/Accounts/Utilities/CommandMappings.json b/src/Accounts/Accounts/Utilities/CommandMappings.json index 25864aec6272..cde2962d8162 100644 --- a/src/Accounts/Accounts/Utilities/CommandMappings.json +++ b/src/Accounts/Accounts/Utilities/CommandMappings.json @@ -5158,6 +5158,7 @@ "New-AzP2sVpnGateway": {}, "New-AzPacketCaptureFilterConfig": {}, "New-AzPacketCaptureScopeConfig": {}, + "New-AzPacketCaptureSettingsConfig": {}, "New-AzPrivateDnsZoneConfig": {}, "New-AzPrivateDnsZoneGroup": {}, "New-AzPrivateEndpoint": {}, diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 780ef83439c2..fde731e49670 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,9 @@ ---> ## Upcoming Release +* Added properties 'ContinuousCapture', 'LocalPath', and 'CaptureSettings' to Packet capture V2 command along with update the old parameter as 'FilePath' as well as support for it for the following cmdlets: + - `New-AzPacketCaptureSettingsConfig` + - `New-AzNetworkWatcherPacketCaptureV2` ## Version 7.17.0 * Added properties 'PublicIpAddressesV6', 'PublicIpPrefixesV6', and 'SourceVirtualNetwork' to NatGateway, as well as support for it for the following cmdlets: diff --git a/src/Network/Network/Models/PSPacketCaptureSettings.cs b/src/Network/Network/Models/PSPacketCaptureSettings.cs new file mode 100644 index 000000000000..7b8822508d8d --- /dev/null +++ b/src/Network/Network/Models/PSPacketCaptureSettings.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network.Models +{ + using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; + + public class PSPacketCaptureSettings + { + /// + /// Gets or sets number of file count. Default value of count is 10 and maximum + /// number is 10000. + /// + [JsonProperty(Order = 1)] + [Ps1Xml(Target = ViewControl.Table)] + public int? FileCount { get; set; } + + /// + /// Gets or sets number of bytes captured per packet. Default value in bytes + /// 104857600 (100MB) and maximum in bytes 4294967295 (4GB). + /// + [JsonProperty(Order = 2)] + [Ps1Xml(Target = ViewControl.Table)] + public long? FileSizeInBytes { get; set; } + + /// + /// Gets or sets maximum duration of the capture session in seconds is 604800s + /// (7 days) for a file. Default value in second 86400s (1 day). + /// + [JsonProperty(Order = 3)] + [Ps1Xml(Target = ViewControl.Table)] + public int? SessionTimeLimitInSeconds { get; set; } + } +} diff --git a/src/Network/Network/NetworkWatcher/PacketCapture/NewAzureNetworkWatcherPacketCaptureCommandV2.cs b/src/Network/Network/NetworkWatcher/PacketCapture/NewAzureNetworkWatcherPacketCaptureCommandV2.cs index c73e0dd0ffb4..1866a4db7c70 100644 --- a/src/Network/Network/NetworkWatcher/PacketCapture/NewAzureNetworkWatcherPacketCaptureCommandV2.cs +++ b/src/Network/Network/NetworkWatcher/PacketCapture/NewAzureNetworkWatcherPacketCaptureCommandV2.cs @@ -12,20 +12,17 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using AutoMapper; using Microsoft.Azure.Commands.Network.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Commands.ResourceManager.Common.Tags; using Microsoft.Azure.Management.Network; using System; -using System.Collections; using System.Collections.Generic; using System.Management.Automation; using MNM = Microsoft.Azure.Management.Network.Models; namespace Microsoft.Azure.Commands.Network { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkWatcherPacketCaptureV2", SupportsShouldProcess = true, DefaultParameterSetName = "SetByResource"),OutputType(typeof(PSPacketCaptureResult))] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "NetworkWatcherPacketCaptureV2", SupportsShouldProcess = true, DefaultParameterSetName = "SetByResource"), OutputType(typeof(PSPacketCaptureResult))] public class NewAzureNetworkWatcherPacketCaptureCommandV2 : PacketCaptureBaseCmdlet { [Parameter( @@ -94,7 +91,7 @@ public class NewAzureNetworkWatcherPacketCaptureCommandV2 : PacketCaptureBaseCmd [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "Local file path.")] + HelpMessage = "Local File path.")] [ValidateNotNullOrEmpty] public string LocalFilePath { get; set; } @@ -140,6 +137,25 @@ public class NewAzureNetworkWatcherPacketCaptureCommandV2 : PacketCaptureBaseCmd [ValidateNotNull] public PSPacketCaptureFilter[] Filter { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "This continuous capture is a nullable boolean, which can hold 'null', 'true' or 'false' value. If we do not pass this parameter, it would be consider as 'null', default value is 'null'.")] + public bool? ContinuousCapture { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "This path is valid if 'ContinuousCapture' is provided and required if no storage ID is provided, otherwise optional. Must include the name of the capture file (*.cap).")] + [ValidateNotNullOrEmpty] + public string LocalPath { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Filters for packet capture session.")] + [ValidateNotNull] + public PSPacketCaptureSettings CaptureSettings { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } @@ -172,6 +188,68 @@ public override void Execute() name = this.NetworkWatcherName; } + #region Capture Settings Validations + if (this.ContinuousCapture == null) + { + if (string.IsNullOrEmpty(this.LocalFilePath) && string.IsNullOrEmpty(this.StorageAccountId)) + { + throw new ArgumentException("PacketCaptureIsMissingStorageIdAndLocalFilePath: StorageLocation must have either storage id or local file path specified."); + } + } + else + { + if (this.TotalBytesPerSession != null) + { + throw new ArgumentException("InvalidRequestPropertiesInPacketCaptureRequest: TotalBytesPerSession is not supported in packet capture request."); + } + + if (this.TimeLimitInSecond != null) + { + throw new ArgumentException("InvalidRequestPropertiesInPacketCaptureRequest: TimeLimitInSecond is not supported in packet capture request."); + } + + if (this.LocalFilePath != null) + { + throw new ArgumentException("PacketCaptureIsMissingStorageIdAndLocalPath: StorageLocation must have either storage id or local path specified."); + } + + if (string.IsNullOrEmpty(this.LocalPath) && string.IsNullOrEmpty(this.StorageAccountId)) + { + throw new ArgumentException("PacketCaptureIsMissingStorageIdAndLocalFilePath: StorageLocation must have either storage id or local file path specified."); + } + + if (this.CaptureSettings == null) + { + this.CaptureSettings = new PSPacketCaptureSettings + { + FileCount = 10, + FileSizeInBytes = 104857600, + SessionTimeLimitInSeconds = 86400 + }; + } + else + { + this.CaptureSettings.FileCount = this.CaptureSettings.FileCount ?? 10; + this.CaptureSettings.FileSizeInBytes = this.CaptureSettings.FileSizeInBytes ?? 104857600; + this.CaptureSettings.SessionTimeLimitInSeconds = this.CaptureSettings.SessionTimeLimitInSeconds ?? 86400; + + if (this.CaptureSettings.FileCount < 1 || this.CaptureSettings.FileCount > 10000) + { + throw new ArgumentException("FileCount must be between 1 and 10,000. Default is 10."); + } + if (this.CaptureSettings.FileSizeInBytes < 102400 || this.CaptureSettings.FileSizeInBytes > 4294967295) + { + throw new ArgumentException("FileSizeInBytes must be between 102400 byte and 4,294,967,295 bytes (4 GB). Default is 104,857,600 bytes (100 MB)."); + } + if (this.CaptureSettings.SessionTimeLimitInSeconds < 1 || this.CaptureSettings.SessionTimeLimitInSeconds > 604800) + { + throw new ArgumentException("SessionTimeLimitInSeconds must be between 1 second and 604,800 seconds (7 days). Default is 86,400 seconds."); + } + } + } + + #endregion + var present = this.IsPacketCapturePresent(resourceGroupName, name, this.Name); if (!present) @@ -185,13 +263,17 @@ public override void Execute() WriteObject(packetCapture); }); } + else + { + throw new ArgumentException($"PacketCaptureExistingAlready: Existing Packet capture can not be updated."); + } } private PSPacketCaptureResult CreatePacketCapture(string resourceGroupName, string networkWatcherName) { MNM.PacketCapture packetCaptureProperties = new MNM.PacketCapture(); - if(this.BytesToCapturePerPacket != null) + if (this.BytesToCapturePerPacket != null) { packetCaptureProperties.BytesToCapturePerPacket = this.BytesToCapturePerPacket; } @@ -209,10 +291,25 @@ private PSPacketCaptureResult CreatePacketCapture(string resourceGroupName, stri packetCaptureProperties.Target = this.TargetId; packetCaptureProperties.StorageLocation = new MNM.PacketCaptureStorageLocation(); - packetCaptureProperties.StorageLocation.FilePath = this.LocalFilePath; + packetCaptureProperties.ContinuousCapture = this.ContinuousCapture; + + if (this.ContinuousCapture != null) + { + packetCaptureProperties.StorageLocation.LocalPath = this.LocalPath; + packetCaptureProperties.CaptureSettings = new MNM.PacketCaptureSettings() + { + FileCount = this.CaptureSettings.FileCount, + FileSizeInBytes = this.CaptureSettings.FileSizeInBytes, + SessionTimeLimitInSeconds = this.CaptureSettings.SessionTimeLimitInSeconds + }; + } + else + { + packetCaptureProperties.StorageLocation.FilePath = this.LocalFilePath; + } + packetCaptureProperties.StorageLocation.StorageId = this.StorageAccountId; packetCaptureProperties.StorageLocation.StoragePath = this.StoragePath; - packetCaptureProperties.TargetType = MNM.PacketCaptureTargetType.AzureVM; if (!string.IsNullOrEmpty(this.TargetType)) diff --git a/src/Network/Network/NetworkWatcher/PacketCapture/NewPacketCaptureSettingsCommand.cs b/src/Network/Network/NetworkWatcher/PacketCapture/NewPacketCaptureSettingsCommand.cs new file mode 100644 index 000000000000..42862ecb1d16 --- /dev/null +++ b/src/Network/Network/NetworkWatcher/PacketCapture/NewPacketCaptureSettingsCommand.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System; +using System.Collections.Generic; +using System.Management.Automation; +using System.Text; + +namespace Microsoft.Azure.Commands.Network.NetworkWatcher.PacketCapture +{ + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "PacketCaptureSettingsConfig"), OutputType(typeof(PSPacketCaptureSettings))] + public class NewPacketCaptureSettingsCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "Number of file count.")] + [ValidateNotNull] + public int? FileCount { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Number of bytes captured per packet.")] + [ValidateNotNull] + public long? FileSizeInBytes { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Capture session in seconds.")] + [ValidateNotNull] + public int? SessionTimeLimitInSeconds { get; set; } + + public override void Execute() + { + base.Execute(); + + // Set default values if null + if (this.FileCount == null) + this.FileCount = 10; + + if (this.FileSizeInBytes == null) + this.FileSizeInBytes = 104857600; + + if (this.SessionTimeLimitInSeconds == null) + this.SessionTimeLimitInSeconds = 86400; + + // Validate FileCount + if (this.FileCount < 1 || this.FileCount > 10000) + { + throw new ArgumentException("FileCount must be between 1 and 10,000. Default is 10."); + } + + // Validate FileSizeInBytes + if (this.FileSizeInBytes < 102400 || this.FileSizeInBytes > 4294967295) + { + throw new ArgumentException("FileSizeInBytes must be between 102400 byte and 4,294,967,295 bytes (4 GB). Default is 104,857,600 bytes (100 MB)."); + } + + // Validate SessionTimeLimitInSeconds + if (this.SessionTimeLimitInSeconds < 1 || this.SessionTimeLimitInSeconds > 604800) + { + throw new ArgumentException("SessionTimeLimitInSeconds must be between 1 second and 604,800 seconds (7 days). Default is 86,400 seconds."); + } + + var packetCaptureSettings = new PSPacketCaptureSettings + { + FileCount = this.FileCount, + FileSizeInBytes = this.FileSizeInBytes, + SessionTimeLimitInSeconds = this.SessionTimeLimitInSeconds + }; + + WriteObject(packetCaptureSettings); + } + } +} From 5b063be819665a22649fcc1cb862ee0e3f6e2e1a Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Mon, 2 Jun 2025 16:26:38 +0530 Subject: [PATCH 2/6] Added help doc, mapped in network command,Test case and session records --- .../ScenarioTests/NetworkWatcherAPITests.cs | 8 + .../ScenarioTests/NetworkWatcherAPITests.ps1 | 92 + .../TestPacketCaptureVMSSWithRingBuffer.json | 3363 +++++++++++++++++ src/Network/Network/Az.Network.psd1 | 3 +- .../New-AzNetworkWatcherPacketCaptureV2.md | 114 +- .../help/New-AzPacketCaptureSettingsConfig.md | 120 + 6 files changed, 3682 insertions(+), 18 deletions(-) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json create mode 100644 src/Network/Network/help/New-AzPacketCaptureSettingsConfig.md diff --git a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs index 8dd3dc8febf3..ef400e3d2445 100644 --- a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs +++ b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.cs @@ -73,6 +73,14 @@ public void TestPacketCaptureVMSS() TestRunner.RunTestScript("Test-PacketCaptureV2"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.netanalyticsdev)] + public void TestPacketCaptureVMSSWithRingBuffer() + { + TestRunner.RunTestScript("Test-PacketCaptureV2WithRingBuffer"); + } + [Fact] [Trait(Category.AcceptanceType, Category.LiveOnly)] [Trait(Category.Owner, NrpTeamAlias.netanalyticsdev)] diff --git a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 index 1224ba3ec137..a44d10a1546d 100644 --- a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 @@ -674,6 +674,98 @@ function Test-PacketCaptureV2 { } } +<# +.SYNOPSIS +Test PacketCapture API with ring buffer. +#> +function Test-PacketCaptureV2WithRingBuffer { + # Setup + $resourceGroupName = Get-NrpResourceGroupName + $virtualMachineScaleSetName = Get-NrpResourceName + $nwName = Get-NrpResourceName + $location = Get-PilotLocation + $resourceTypeParent = "Microsoft.Network/networkWatchers" + $nwLocation = Get-ProviderLocation $resourceTypeParent + $nwRgName = Get-NrpResourceGroupName + $templateFileVMSS = (Resolve-Path ".\TestData\DeploymentVMSS.json").Path + $pcName = Get-NrpResourceName + $pcName3 = $pcName + "2" + + try { + . ".\AzureRM.Resources.ps1" + + # Create Resource group + New-AzResourceGroup -Name $resourceGroupName -Location "$location" + + # Deploy resources + Get-TestResourcesDeploymentVMSS -rgn "$resourceGroupName" + + #Get public IP address + $address = Get-AzPublicIpAddress -ResourceGroupName $resourceGroupName + + # Create Resource group for Network Watcher + New-AzResourceGroup -Name $nwRgName -Location "$location" + + # Get Network Watcher + $nw = Get-CreateTestNetworkWatcher -location $location -nwName $nwName -nwRgName $nwRgName + + Wait-Seconds 600 + + #Get Vmss and Instances + $vmss = Get-AzVmss -ResourceGroupName $resourceGroupName -VMScaleSetName $virtualMachineScaleSetName + + #Install networkWatcherAgent on Vmss and Vmss Instances + Add-AzVmssExtension -VirtualMachineScaleSet $vmss -Name "AzureNetworkWatcherExtension" -Publisher "Microsoft.Azure.NetworkWatcher" -Type "NetworkWatcherAgentWindows" -TypeHandlerVersion "1.4" -AutoUpgradeMinorVersion $True + Update-AzVmss -ResourceGroupName "$resourceGroupName" -Name $virtualMachineScaleSetName -VirtualMachineScaleSet $vmss + + # Updating all VMSS instances with NW agent + $instances = Get-AzVMSSVM -ResourceGroupName "$resourceGroupName" -VMScaleSetName $vmss.Name + foreach ($item in $instances) { + Update-AzVmssInstance -ResourceGroupName "$resourceGroupName" -VMScaleSetName $vmss.Name -InstanceId $item.InstanceID + } + + # Create Capture settiings for packet capture, its only applicable if we are pass continuousCapture as true/false + $c1 = New-AzPacketCaptureSettingsConfig -FileCount 2 -FileSizeInBytes 102400 -SessionTimeLimitInSeconds 60 + + #$vmssid = $vmss.Id + #Write-Output ("VmssId: '$vmssid'") + #Write-Output ("pcname: '$pcName3' ") + #Write-Output ("C1: '$c1' ") + + #Create packet capture + # with Continuous Capture, if you are using continuousCapture, change it to local Path instead FilePath + $job3 = New-AzNetworkWatcherPacketCaptureV2 -NetworkWatcher $nw -Name $pcName3 -TargetId $vmss.Id -TargetType "azurevmss" -ContinuousCapture $false -CaptureSettings $c1 -LocalPath C:\captures\Capture.cap -AsJob + $job3 | Wait-Job + + Start-TestSleep -Seconds 2 + + #Get packet capture + $job3 = Get-AzNetworkWatcherPacketCapture -NetworkWatcher $nw -PacketCaptureName $pcName3 -AsJob + $job3 | Wait-Job + $pc3 = $job3 | Receive-Job + + #Write-Output ("PC3: '$pc3'") + + #Verification + Assert-AreEqual $pc3.Name $pcName3 + Assert-AreEqual "Succeeded" $pc3.ProvisioningState + Assert-AreEqual $pc3.TargetType AzureVMSS + + #Stop packet capture + $job3 = Stop-AzNetworkWatcherPacketCapture -NetworkWatcher $nw -PacketCaptureName $pcName3 -AsJob + $job3 | Wait-Job + + #Remove packet capture + $job3 = Remove-AzNetworkWatcherPacketCapture -NetworkWatcher $nw -PacketCaptureName $pcName3 -AsJob + $job3 | Wait-Job + } + finally { + # Cleanup + Clean-ResourceGroup $resourceGroupName + #Clean-ResourceGroup $nwRgName + } +} + <# .SYNOPSIS Test Troubleshoot API. diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json new file mode 100644 index 000000000000..47580f2c00d9 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json @@ -0,0 +1,3363 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e551be0-287c-423c-81f9-43564a9df14b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "35197d65-a3db-491c-9a41-fee9a919fbcb" + ], + "x-ms-correlation-request-id": [ + "35197d65-a3db-491c-9a41-fee9a919fbcb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T200926Z:35197d65-a3db-491c-9a41-fee9a919fbcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 705FA0BCD95441DA9A3682817A37CB01 Ref B: MAA201060516017 Ref C: 2025-05-28T20:09:25Z" + ], + "Date": [ + "Wed, 28 May 2025 20:09:26 GMT" + ], + "Content-Length": [ + "197144" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a\",\r\n \"roleDefinitionId\": \"18363e25-ff21-4159-ae8d-7dfecb5bd001\"\r\n },\r\n {\r\n \"applicationId\": \"d66e9e8e-53a4-420c-866d-5bb39aaea675\",\r\n \"roleDefinitionId\": \"d4d2d679-cce0-429d-9a3b-17118c035f66\"\r\n },\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\",\r\n \"managedByRoleDefinitionId\": \"82e8942a-bcb6-444a-b1c4-31a3ea463a7d\"\r\n },\r\n {\r\n \"applicationId\": \"79d7fb34-4bef-4417-8184-ff713af7a679\",\r\n \"roleDefinitionId\": \"1c1f11ef-abfa-4abe-a02b-226771d07fc7\"\r\n },\r\n {\r\n \"applicationId\": \"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68\",\r\n \"roleDefinitionId\": \"787424c7-f9d2-416b-a939-4d59deb2d259\"\r\n },\r\n {\r\n \"applicationId\": \"60b2e7d5-a27f-426d-a6b1-acced0846fdf\",\r\n \"roleDefinitionId\": \"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00\"\r\n },\r\n {\r\n \"applicationId\": \"40c49ff3-c6ae-436d-b28e-b8e268841980\",\r\n \"roleDefinitionId\": \"d4d2d679-cce0-429d-9a3b-17118c035f66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/DS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TLSA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NAPTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/dnssecConfigs\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers/inboundEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers/outboundEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets/forwardingRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsResolvers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsForwardingRulesets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverOperationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies/dnsSecurityRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsResolverPolicies\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverDomainLists\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverDomainLists/bulk\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverPolicyOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverPolicyOperationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2020-11-01\",\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePortsLocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/ApplicationGatewayWafDynamicManifests\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"queryExpressRoutePortsBandwidth\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteProviderPorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/hybridEdgeZone\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureWebCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualAppliances\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualApplianceSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assist\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/privateDnsZoneLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/azureendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/externalendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/nestedendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailabilityV2\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/taggedTrafficConsumers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"internalPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"customIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dscpConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints/privateLinkServiceProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setLoadBalancerFrontendPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServiceSlots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTagDetails\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dataTasks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/startPacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletePacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getPacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rnmEffectiveRouteTable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rnmEffectiveNetworkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkManagerConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityPerimeters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/perimeterAssociableResourceTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/queryNetworkSecurityPerimeter\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkGroupMemberships\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/internalAzureVirtualNetworkManagerOperation\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers/ipamPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Sweden Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Germany West Central\",\r\n \"Italy North\",\r\n \"Norway East\",\r\n \"Poland Central\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"Israel Central\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Canada East\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"UK West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"New Zealand North\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/ipamPoolOperationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Sweden Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Germany West Central\",\r\n \"Italy North\",\r\n \"Norway East\",\r\n \"Poland Central\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"Israel Central\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Canada East\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"UK West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"New Zealand North\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers/verifierWorkspaces\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/verifierWorkspaceOperationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"copilot\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/networkSecurityPerimeterOperationStatuses\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-11-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints/customHttpsConfiguration\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2020-11-01\",\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US STG\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5b54ea3-3cce-4134-b5c9-f3ba7b0dfce6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-request-id": [ + "2854308b-e597-44cb-ba84-09b20718fc2b" + ], + "x-ms-correlation-request-id": [ + "2854308b-e597-44cb-ba84-09b20718fc2b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T200929Z:2854308b-e597-44cb-ba84-09b20718fc2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2541C31A6F42411FB4F02217D631369B Ref B: MAA201060516047 Ref C: 2025-05-28T20:09:28Z" + ], + "Date": [ + "Wed, 28 May 2025 20:09:29 GMT" + ], + "Content-Length": [ + "197144" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a\",\r\n \"roleDefinitionId\": \"18363e25-ff21-4159-ae8d-7dfecb5bd001\"\r\n },\r\n {\r\n \"applicationId\": \"d66e9e8e-53a4-420c-866d-5bb39aaea675\",\r\n \"roleDefinitionId\": \"d4d2d679-cce0-429d-9a3b-17118c035f66\"\r\n },\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n },\r\n {\r\n \"applicationId\": \"6d057c82-a784-47ae-8d12-ca7b38cf06b4\",\r\n \"roleDefinitionId\": \"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e\",\r\n \"managedByRoleDefinitionId\": \"82e8942a-bcb6-444a-b1c4-31a3ea463a7d\"\r\n },\r\n {\r\n \"applicationId\": \"79d7fb34-4bef-4417-8184-ff713af7a679\",\r\n \"roleDefinitionId\": \"1c1f11ef-abfa-4abe-a02b-226771d07fc7\"\r\n },\r\n {\r\n \"applicationId\": \"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68\",\r\n \"roleDefinitionId\": \"787424c7-f9d2-416b-a939-4d59deb2d259\"\r\n },\r\n {\r\n \"applicationId\": \"60b2e7d5-a27f-426d-a6b1-acced0846fdf\",\r\n \"roleDefinitionId\": \"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00\"\r\n },\r\n {\r\n \"applicationId\": \"40c49ff3-c6ae-436d-b28e-b8e268841980\",\r\n \"roleDefinitionId\": \"d4d2d679-cce0-429d-9a3b-17118c035f66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/DS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TLSA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NAPTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\",\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/dnssecConfigs\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers/inboundEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolvers/outboundEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets/forwardingRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsForwardingRulesets/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsResolvers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsForwardingRulesets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverOperationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\",\r\n \"2023-07-01\",\r\n \"2022-07-01\",\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies/dnsSecurityRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverPolicies/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listDnsResolverPolicies\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverDomainLists\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsResolverDomainLists/bulk\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"West US 3\",\r\n \"Southeast Asia\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"Korea Central\",\r\n \"Sweden Central\",\r\n \"East Asia\",\r\n \"Switzerland North\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Norway East\",\r\n \"UAE North\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Japan West\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Uk West\",\r\n \"South India\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"Germany North\",\r\n \"Australia Central\",\r\n \"UAE Central\",\r\n \"New Zealand North\",\r\n \"Qatar Central\",\r\n \"Malaysia West\",\r\n \"Indonesia Central\",\r\n \"Poland Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverPolicyOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsResolverPolicyOperationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2025-05-01\",\r\n \"2023-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2020-11-01\",\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePortsLocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"securityPartnerProviders\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/ApplicationGatewayWafDynamicManifests\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"queryExpressRoutePortsBandwidth\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteProviderPorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/hybridEdgeZone\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"azureWebCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualAppliances\",\r\n \"locations\": [\r\n \"Italy North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Israel Central\",\r\n \"Spain Central\",\r\n \"Mexico Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networkVirtualApplianceSkus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2023-01-01-preview\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assist\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\",\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/privateDnsZoneLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-06-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/azureendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/externalendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/nestedendpoints\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailabilityV2\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-01-preview\",\r\n \"2022-04-01\",\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/taggedTrafficConsumers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"internalPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"customIpPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dscpConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints/privateLinkServiceProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Chile Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\",\r\n \"4\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Indonesia Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Malaysia West\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setLoadBalancerFrontendPublicIpAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServiceSlots\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ipAllocations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTagDetails\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dataTasks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/startPacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletePacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getPacketTagging\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rnmEffectiveRouteTable\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rnmEffectiveNetworkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkManagerConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityPerimeters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/perimeterAssociableResourceTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/queryNetworkSecurityPerimeter\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\",\r\n \"2023-09-01-preview\",\r\n \"2023-08-01-preview\",\r\n \"2023-07-01-preview\",\r\n \"2022-02-01-preview\",\r\n \"2021-05-01-preview\",\r\n \"2021-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkGroupMemberships\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/commitInternalAzureNetworkManagerConfiguration\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/internalAzureVirtualNetworkManagerOperation\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"Jio India West\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-09-01-preview\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01-preview\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-03-01-preview\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-06-01-preview\",\r\n \"2022-05-01\",\r\n \"2022-04-01-preview\",\r\n \"2022-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers/ipamPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Sweden Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Germany West Central\",\r\n \"Italy North\",\r\n \"Norway East\",\r\n \"Poland Central\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"Israel Central\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Canada East\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"UK West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"New Zealand North\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\",\r\n \"2023-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/ipamPoolOperationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Sweden Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Germany West Central\",\r\n \"Italy North\",\r\n \"Norway East\",\r\n \"Poland Central\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"Israel Central\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Canada East\",\r\n \"France South\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Switzerland West\",\r\n \"UK West\",\r\n \"UAE Central\",\r\n \"Brazil Southeast\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"New Zealand North\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkManagers/verifierWorkspaces\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/verifierWorkspaceOperationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"copilot\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations/networkSecurityPerimeterOperationStatuses\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Jio India West\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"Switzerland West\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Sweden Central\",\r\n \"Japan West\",\r\n \"Norway East\",\r\n \"France Central\",\r\n \"West US 3\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Brazil Southeast\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Norway West\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Switzerland North\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"Chile Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Malaysia West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2021-06-01\",\r\n \"2020-11-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors/frontendEndpoints/customHttpsConfiguration\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2020-07-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2025-03-01\",\r\n \"2025-01-01-preview\",\r\n \"2024-02-01\",\r\n \"2022-05-01\",\r\n \"2020-11-01\",\r\n \"2020-04-01\",\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US STG\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"Indonesia Central\",\r\n \"Chile Central\",\r\n \"Malaysia West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-10-01\",\r\n \"2024-07-01\",\r\n \"2024-05-01\",\r\n \"2024-03-01\",\r\n \"2024-01-01\",\r\n \"2023-11-01\",\r\n \"2023-09-01\",\r\n \"2023-06-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-02-01\",\r\n \"2022-11-01\",\r\n \"2022-09-01\",\r\n \"2022-07-01\",\r\n \"2022-05-01\",\r\n \"2022-01-01\",\r\n \"2021-12-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-03-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-11-01\",\r\n \"2020-08-01\",\r\n \"2020-07-01\",\r\n \"2020-06-01\",\r\n \"2020-05-01\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50f393a1-b2b3-41ec-a5a4-1bcd6c8cd5b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-request-id": [ + "d9385682-da1b-4ccf-9392-93bbbce6afdd" + ], + "x-ms-correlation-request-id": [ + "d9385682-da1b-4ccf-9392-93bbbce6afdd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T200934Z:d9385682-da1b-4ccf-9392-93bbbce6afdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5F57DABDABBF446A99EC9B25AC33B9B9 Ref B: MAA201060515009 Ref C: 2025-05-28T20:09:31Z" + ], + "Date": [ + "Wed, 28 May 2025 20:09:34 GMT" + ], + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aed64597-341b-466f-bd8a-7006d0f386a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "9969" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"string\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"string\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"int\"\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"bool\"\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"location\": {\r\n \"type\": \"string\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"int\"\r\n }\r\n },\r\n \"variables\": {\r\n \"namingInfix\": \"[toLower(substring(concat(parameters('vmssName'), uniqueString(resourceGroup().id)), 0, 9))]\",\r\n \"longNamingInfix\": \"[toLower(parameters('vmssName'))]\",\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"subnetPrefix\": \"10.0.0.0/24\",\r\n \"virtualNetworkName\": \"[concat(variables('namingInfix'), 'vnet')]\",\r\n \"publicIPAddressName\": \"[concat(variables('namingInfix'), 'pip')]\",\r\n \"subnetName\": \"[concat(variables('namingInfix'), 'subnet')]\",\r\n \"loadBalancerName\": \"[concat(variables('namingInfix'), 'lb')]\",\r\n \"publicIPAddressID\": \"[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]\",\r\n \"lbProbeID\": \"[resourceId('Microsoft.Network/loadBalancers/probes',variables('loadBalancerName'), 'tcpProbe')]\",\r\n \"natPoolName\": \"[concat(variables('namingInfix'), 'natpool')]\",\r\n \"bePoolName\": \"[concat(variables('namingInfix'), 'bepool')]\",\r\n \"lbPoolID\": \"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools',variables('loadBalancerName'),variables('bePoolName'))]\",\r\n \"natStartPort\": 50000,\r\n \"natEndPort\": 50119,\r\n \"natBackendPort\": 3389,\r\n \"nicName\": \"[concat(variables('namingInfix'), 'nic')]\",\r\n \"ipConfigName\": \"[concat(variables('namingInfix'), 'ipconfig')]\",\r\n \"frontEndIPConfigID\": \"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations',variables('loadBalancerName'),'loadBalancerFrontEnd')]\",\r\n \"osType\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"[parameters('windowsOSVersion')]\",\r\n \"version\": \"latest\"\r\n },\r\n \"imageReference\": \"[variables('osType')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('loadBalancerName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]\"\r\n ],\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"[variables('publicIPAddressID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"[variables('bePoolName')]\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"[variables('natPoolName')]\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": \"[variables('natStartPort')]\",\r\n \"frontendPortRangeEnd\": \"[variables('natEndPort')]\",\r\n \"backendPort\": \"[variables('natBackendPort')]\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"LBRule\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"probe\": {\r\n \"id\": \"[variables('lbProbeID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"tcpProbe\",\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('namingInfix')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('vmSku')]\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": \"[parameters('instanceCount')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/loadBalancers', variables('loadBalancerName'))]\",\r\n \"[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]\"\r\n ],\r\n \"properties\": {\r\n \"overprovision\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"singlePlacementGroup\": \"[parameters('singlePlacementGroup')]\",\r\n \"platformFaultDomainCount\": \"[parameters('platformFaultDomainCount')]\",\r\n \"virtualMachineProfile\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"imageReference\": \"[variables('imageReference')]\"\r\n },\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"[variables('namingInfix')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"Sanitized\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"[variables('nicName')]\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"[variables('ipConfigName')]\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"[resourceId('Microsoft.Network/loadBalancers/inboundNatPools', variables('loadBalancerName'), variables('natPoolName'))]\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('publicIPAddressName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"[variables('longNamingInfix')]\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('virtualNetworkName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"[variables('addressPrefix')]\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"[variables('subnetName')]\",\r\n \"properties\": {\r\n \"addressPrefix\": \"[variables('subnetPrefix')]\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"string\",\r\n \"value\": \"[concat('http://', reference(variables('publicIPAddressName')).dnsSettings.fqdn, '/MyApp')]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"value\": \"netanalytics-32psnrp644\"\r\n },\r\n \"location\": {\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA" + ], + "x-ms-deployment-engine-version": [ + "1.363.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "800" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "12000" + ], + "x-ms-request-id": [ + "e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + ], + "x-ms-correlation-request-id": [ + "e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T200945Z:e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0D4665F7C1F24E93B6883298A87CD099 Ref B: MAA201060513021 Ref C: 2025-05-28T20:09:35Z" + ], + "Date": [ + "Wed, 28 May 2025 20:09:45 GMT" + ], + "Content-Length": [ + "2408" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2025-05-28T20:09:37.4100895Z\",\r\n \"duration\": \"PT0.0009298S\",\r\n \"correlationId\": \"e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9690pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9690vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9690\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + ], + "x-ms-correlation-request-id": [ + "14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201016Z:14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0F6B478240EA45659DE707E2FC9880C3 Ref B: MAA201060513021 Ref C: 2025-05-28T20:10:15Z" + ], + "Date": [ + "Wed, 28 May 2025 20:10:16 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + ], + "x-ms-correlation-request-id": [ + "a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201047Z:a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C947FA23318A4DE5AF907EF996CDA7A4 Ref B: MAA201060513021 Ref C: 2025-05-28T20:10:46Z" + ], + "Date": [ + "Wed, 28 May 2025 20:10:47 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + ], + "x-ms-correlation-request-id": [ + "c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201118Z:c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DAB7A49B24B4EB3B770B7B9EAAC594C Ref B: MAA201060513021 Ref C: 2025-05-28T20:11:17Z" + ], + "Date": [ + "Wed, 28 May 2025 20:11:18 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "f1cfecc5-e992-4d51-8eea-f8050cda45a2" + ], + "x-ms-correlation-request-id": [ + "f1cfecc5-e992-4d51-8eea-f8050cda45a2" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T201149Z:f1cfecc5-e992-4d51-8eea-f8050cda45a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67A7F2BA4B8A45FFA53CB725F0469F15 Ref B: MAA201060513021 Ref C: 2025-05-28T20:11:48Z" + ], + "Date": [ + "Wed, 28 May 2025 20:11:49 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + ], + "x-ms-correlation-request-id": [ + "d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201221Z:d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21611A4DD9DE44FEBC33DA7DFEEB86B7 Ref B: MAA201060513021 Ref C: 2025-05-28T20:12:20Z" + ], + "Date": [ + "Wed, 28 May 2025 20:12:20 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "b25ab4c7-4aad-45b9-ad44-a13661971426" + ], + "x-ms-correlation-request-id": [ + "b25ab4c7-4aad-45b9-ad44-a13661971426" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201252Z:b25ab4c7-4aad-45b9-ad44-a13661971426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1743F6DE735241A19D053E5684FC8E99 Ref B: MAA201060513021 Ref C: 2025-05-28T20:12:51Z" + ], + "Date": [ + "Wed, 28 May 2025 20:12:51 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "e3bf3220-b394-4bed-ab46-d616c4ef5350" + ], + "x-ms-correlation-request-id": [ + "e3bf3220-b394-4bed-ab46-d616c4ef5350" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201322Z:e3bf3220-b394-4bed-ab46-d616c4ef5350" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0964075773FC47938EB5D97D4E971B4C Ref B: MAA201060513021 Ref C: 2025-05-28T20:13:22Z" + ], + "Date": [ + "Wed, 28 May 2025 20:13:22 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + ], + "x-ms-correlation-request-id": [ + "fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201323Z:fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F8803888F6A746BABFCB087CF3A550BA Ref B: MAA201060513021 Ref C: 2025-05-28T20:13:23Z" + ], + "Date": [ + "Wed, 28 May 2025 20:13:23 GMT" + ], + "Content-Length": [ + "2774" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2025-05-28T20:13:22.1347257Z\",\r\n \"duration\": \"PT3M44.7246362S\",\r\n \"correlationId\": \"e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9690pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9690vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9690\"\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"String\",\r\n \"value\": \"http://psnrp9690.westcentralus.cloudapp.azure.com/MyApp\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachineScaleSets/psnrp9690\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/loadBalancers/psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/psnrp9690pip\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/virtualNetworks/psnrp9690vnet\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDI0LTA3LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a172337d-ed2b-454d-ba2b-e2ce6abd07ba" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "1908d6af-2e7e-4e46-924f-bb5e71af42d9" + ], + "x-ms-correlation-request-id": [ + "85119ac0-642d-4763-a1b2-c06c6c98d8ae" + ], + "x-ms-arm-service-request-id": [ + "41d3d4a2-2dcc-4cfa-8b57-bbd3e7b44e6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "85119ac0-642d-4763-a1b2-c06c6c98d8ae" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201327Z:85119ac0-642d-4763-a1b2-c06c6c98d8ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EA6500FECDB48B99C50EA4CEA1F8219 Ref B: MAA201060513047 Ref C: 2025-05-28T20:13:24Z" + ], + "Date": [ + "Wed, 28 May 2025 20:13:26 GMT" + ], + "Content-Length": [ + "877" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9690pip\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"etag\": \"W/\\\"9220ef4f-ae96-457a-8329-d1c4eca732ab\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d8b8a5ae-1597-4d49-ba05-d0d027e89785\",\r\n \"ipAddress\": \"13.71.248.122\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"psnrp9690\",\r\n \"fqdn\": \"psnrp9690.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp1519?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMTUxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44af3fbf-7953-4644-9391-dde381bfa437" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-request-id": [ + "499eaf02-b4ce-4df7-bae6-bb2571439d54" + ], + "x-ms-correlation-request-id": [ + "499eaf02-b4ce-4df7-bae6-bb2571439d54" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201334Z:499eaf02-b4ce-4df7-bae6-bb2571439d54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C00F346C2FC4CBA9A4B76DAC431F0AF Ref B: MAA201060516029 Ref C: 2025-05-28T20:13:31Z" + ], + "Date": [ + "Wed, 28 May 2025 20:13:34 GMT" + ], + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp1519\",\r\n \"name\": \"psnrp1519\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/networkWatchers?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "e7369700-90e8-4624-aba5-f51119ce7b87" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "b7f9b0ea-09cf-4aec-8eda-c3c0979b22c7", + "da8c7f07-5444-4e08-92cf-bbfa2dc0aaf2", + "0276f00d-cf2a-4314-ab20-8d9418480fb8", + "ad731550-3bfe-4c7f-be8f-34517b8e8499", + "0f78dedb-0592-4484-aeeb-68e653a7861f", + "7d4ba7a6-3779-4410-beb7-acedc12f0ca5", + "df58b6fe-f80f-4a5d-a64b-323edefe8ffb", + "e8b10f9c-408c-4cd6-922e-84d3efe3361f", + "197b93ef-6bd2-413c-ab90-fc0ca7e95c54", + "f2e95e15-e932-41df-82f6-93674b303f20", + "a11469d5-9ecd-4f72-bec7-721babbf498a", + "4f1a562f-5382-4ed4-acfe-97028fb3616e", + "d29cf70e-ef67-4e46-b01e-438b2878b0c8", + "9188d424-17ad-42f0-968a-25429b1c2090", + "fad8ca10-4343-407f-97b8-bd065ec5d484", + "d46115e6-05a4-4bc7-8b0b-2d112e08153b", + "dc7c36ea-16ec-46ec-983b-10fd4f8fc6ea", + "4a247cc6-cb70-4162-8e6f-1af408771200", + "313305f3-b70d-4b1f-9cca-bdc3889c8c8c", + "4626b998-2cbd-47e2-97ac-ee785d74ae83", + "b4f3c4ae-33a0-426b-899e-ebf5be8aecf1", + "b5824a1d-83ac-4177-b409-5bf31dabea34", + "549e2278-79e6-4f84-80ac-88ebb2a8f951", + "a2c95c20-5423-4c9b-8ff9-5412fb93f0da", + "ef8979df-fc14-41e6-a5e1-02de1283b687", + "896f91d6-140e-4cd1-8244-b11e795354f7", + "0bd6e2a9-0890-4457-b78e-f78869551d40", + "6a0ea75a-8642-4f07-a627-bd4a9c99a030", + "5e6af5ff-5721-4513-bc0e-2f2aab20bc2b", + "7babfeb5-5972-4c8f-8f41-aec716d3cc82", + "0d3e540c-0df0-4e64-92b0-651174a0e3da", + "c779cc6c-1fbe-4e51-91d7-6dc04b19f8f7", + "a9a1c6c8-a539-4ed7-947b-068aeafd1fd3", + "706db39b-25d9-43a9-9654-62d17e42b90e", + "80301a32-107f-41c8-a3d7-1ed29870b8b2", + "fda8ec44-55e6-46b7-b892-fd387f3a859c", + "271fc66d-6ee5-4986-ad84-5cc5e1cea391", + "fecf8f92-72c4-45c0-aed0-2918df7794d2", + "5b1c5566-abb3-4353-8dd3-5585f82f5d22", + "7c03cf18-6d82-4201-93c1-52d61dab4f81", + "280d8ddb-3451-43f7-88bc-ff28940b98b0", + "f0745d10-6636-47ea-ad5a-a811d9756d3d", + "6af32d4a-5dd3-4e5e-a324-5cc247965cc8", + "b1fc41d4-86e9-4ede-9bb3-908e0d59ed35", + "5273d39e-08e6-418b-8c60-8dc4dab73de1", + "facfce5d-656f-4e08-bf07-aa255b5fecb8", + "da01beb8-7bbf-4443-b0c8-0bbfe63b1132", + "f36fe192-6573-43e1-8bd8-b2a9f886c4ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + ], + "x-ms-correlation-request-id": [ + "0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T201337Z:0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B69DAF30E36435094A67F6D1F41E32A Ref B: MAA201060514053 Ref C: 2025-05-28T20:13:35Z" + ], + "Date": [ + "Wed, 28 May 2025 20:13:36 GMT" + ], + "Content-Length": [ + "15020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"etag\": \"W/\\\"e67a5aa8-81d4-4444-9170-f112f68c66f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"etag\": \"W/\\\"89592e69-4ae4-46c1-b777-3540e4163329\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northeurope\",\r\n \"etag\": \"W/\\\"13b34e8d-b95d-4737-807c-1517cee35cc8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westeurope\",\r\n \"etag\": \"W/\\\"dd9e1390-57b6-45fc-a385-6f9a0e074696\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"etag\": \"W/\\\"5c3a6461-5444-47c0-8f6b-fe2284dde243\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"etag\": \"W/\\\"31777133-d580-4c4c-96b9-b6012b5bbf90\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northcentralus\",\r\n \"etag\": \"W/\\\"59f8d3a9-31c4-47fb-bef5-4723b2662867\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"etag\": \"W/\\\"d1e12d23-297c-4f9f-8e08-061cccc5d127\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"etag\": \"W/\\\"c03f3fd5-ca02-4455-9843-e4427137f401\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2\",\r\n \"etag\": \"W/\\\"da19f75c-4928-462b-aa64-b31ac106f314\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"etag\": \"W/\\\"a3e16e1c-9768-4ccb-ba0f-05dcce96cadb\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japanwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japanwest\",\r\n \"etag\": \"W/\\\"f9bb75bb-bf20-414b-a1dd-4ea06dd02ccc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_brazilsouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_brazilsouth\",\r\n \"etag\": \"W/\\\"d1a03a2c-7d63-42a3-87ca-d65b7c4a97ea\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"etag\": \"W/\\\"b462d356-2cc1-474d-8a0a-27b98495b6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiasoutheast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiasoutheast\",\r\n \"etag\": \"W/\\\"bbd4cfbc-b1c5-4549-95d2-13584ae9ae3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralindia\",\r\n \"etag\": \"W/\\\"cdcaef20-eb12-4b98-a5dd-8730da0a36bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"etag\": \"W/\\\"5e6a909b-0e0c-4d68-be5c-d549399041a2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westindia\",\r\n \"etag\": \"W/\\\"ed0588b3-183f-4faf-94fe-fa9435496ad2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadacentral\",\r\n \"etag\": \"W/\\\"24aab9fa-83f4-40bd-82f4-7b3eada35b8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadaeast\",\r\n \"etag\": \"W/\\\"3486bdf6-d813-4ff2-af78-4c3ab2772e30\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"etag\": \"W/\\\"36864961-07c1-4dc8-a73f-47c510edff84\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"etag\": \"W/\\\"dc48e8f9-192c-4f60-87f1-292ade2f93d8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_ukwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_ukwest\",\r\n \"etag\": \"W/\\\"f69e7214-3753-4057-ac94-69a899902d1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uksouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uksouth\",\r\n \"etag\": \"W/\\\"da992749-3796-44cc-9524-6b45fd2ea59c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreacentral\",\r\n \"etag\": \"W/\\\"6a93f140-b5b0-48fa-bfc7-055ae84fbe79\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreasouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreasouth\",\r\n \"etag\": \"W/\\\"5528758d-6da0-4500-8880-fa6fe24a416c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_francecentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\r\n \"etag\": \"W/\\\"818ef172-a7f6-47f8-b1df-c4d1278a8f22\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiacentral\",\r\n \"etag\": \"W/\\\"3027f468-b23d-461e-be51-4983eb572075\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southafricanorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southafricanorth\",\r\n \"etag\": \"W/\\\"7db800bc-d396-4e66-82f9-2d33b93a44fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uaenorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uaenorth\",\r\n \"etag\": \"W/\\\"877eb249-879d-4fec-8d35-45a7cd977c70\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uaenorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_switzerlandnorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_switzerlandnorth\",\r\n \"etag\": \"W/\\\"68e092a2-e51e-4c87-84bd-eefe88a2d984\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_germanywestcentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_germanywestcentral\",\r\n \"etag\": \"W/\\\"42741b21-cb03-42ba-b5ee-3fa8ce960db5\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_norwayeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_norwayeast\",\r\n \"etag\": \"W/\\\"f959b133-6d43-4101-a03a-5ee267b2e514\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"norwayeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus3\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus3\",\r\n \"etag\": \"W/\\\"7f5ec053-af0e-43bd-a714-70d6e95619a4\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_jioindiawest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_jioindiawest\",\r\n \"etag\": \"W/\\\"4923d16c-ac54-4e75-9f6c-da0a10b0b2a7\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"jioindiawest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_swedencentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_swedencentral\",\r\n \"etag\": \"W/\\\"7d4f1a40-ae1b-4e04-b6e9-9fda2d206b3a\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"swedencentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centraluseuap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centraluseuap\",\r\n \"etag\": \"W/\\\"094c3288-7767-4fb0-bf6d-4d50b445adbf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2euap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap\",\r\n \"etag\": \"W/\\\"16bad77f-268e-4c75-978d-5f96e651d148\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "5788d486-7c06-4fc4-94ef-0a1b8d356086" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"4\"" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;34" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5def6ec0-3708-4e27-ba10-b7bbcbdd1588" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "9ac9c871-8ac9-49af-9ae8-d5810252674b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202338Z:9ac9c871-8ac9-49af-9ae8-d5810252674b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACF6FC783F8A4B39B181A3E1DBC3223C Ref B: MAA201060515021 Ref C: 2025-05-28T20:23:38Z" + ], + "Date": [ + "Wed, 28 May 2025 20:23:37 GMT" + ], + "Content-Length": [ + "4646" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:45:51.4270549+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"5\"" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;30" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78b02f3d-a3f3-490a-9526-fd1d01599f5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "930dae8b-d860-4fb6-b01b-869cd8765169" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202400Z:930dae8b-d860-4fb6-b01b-869cd8765169" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBC046A02A8D47FBA8C814F4B1738AD1 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:59Z" + ], + "Date": [ + "Wed, 28 May 2025 20:24:00 GMT" + ], + "Content-Length": [ + "5165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:53:48.2026955+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5103" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\",\r\n \"diskSizeGB\": 127,\r\n \"osType\": \"Windows\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"settings\": {},\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"settings\": {},\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"singlePlacementGroup\": true,\r\n \"platformFaultDomainCount\": 1,\r\n \"orchestrationMode\": \"Uniform\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"5\"" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606287084302&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=p-Ci6-r8Mwn_gdh2daHvDiLdT92zpKcJKLGfryEBNrcxMjgSjgAy_0fHPxNsg_8aveIv6Ecz0G_rrcqIRCdZ_41q2OQkYm8Oq0LAuMihaOPAUrKK_ShRsBxjN4RH_WVfWT8sGVLxSLq8jCnwlMe2xmoA38dEKWHMzQ7VqFc_EQt_RwKAtf2BAtU2_f_YjeFdh-lqSfPJ-X6wAjR8WtjPywJr1w1e3DA118_iePfQib8mmy0siRX_BKe-bdOuzdLWAB9TEbhpJIOsTvecboSOCHsoc6bJYfis6tuoBkTgVgiIIDzzAtBMsdT8cShLpn1sTjIgbQKKOVF4etV-HT5a3A&h=Afx4qNaZBshsYhDJOtjdMQII0nXKi8sTS1qNgsvDH6U" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "0" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/4ba6ca72-2f45-4ff5-8b4d-4047405db921" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "800" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "12000" + ], + "x-ms-correlation-request-id": [ + "4082d6fe-07cf-4fdc-8fe3-048fb257ad50" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202348Z:4082d6fe-07cf-4fdc-8fe3-048fb257ad50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1920E9869F7242E289FEAC08B1A57CA9 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:40Z" + ], + "Date": [ + "Wed, 28 May 2025 20:23:48 GMT" + ], + "Content-Length": [ + "5164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:53:48.2026955+05:30\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606287084302&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=p-Ci6-r8Mwn_gdh2daHvDiLdT92zpKcJKLGfryEBNrcxMjgSjgAy_0fHPxNsg_8aveIv6Ecz0G_rrcqIRCdZ_41q2OQkYm8Oq0LAuMihaOPAUrKK_ShRsBxjN4RH_WVfWT8sGVLxSLq8jCnwlMe2xmoA38dEKWHMzQ7VqFc_EQt_RwKAtf2BAtU2_f_YjeFdh-lqSfPJ-X6wAjR8WtjPywJr1w1e3DA118_iePfQib8mmy0siRX_BKe-bdOuzdLWAB9TEbhpJIOsTvecboSOCHsoc6bJYfis6tuoBkTgVgiIIDzzAtBMsdT8cShLpn1sTjIgbQKKOVF4etV-HT5a3A&h=Afx4qNaZBshsYhDJOtjdMQII0nXKi8sTS1qNgsvDH6U", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzEwOWNiYmYxLTYwY2MtNGJmMS1iMjBkLTNiNGRkMGZlYTM3YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2Mjg3MDg0MzAyJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXAtQ2k2LXI4TXduX2dkaDJkYUh2RGlMZFQ5MnpwS2NKS0xHZnJ5RUJOcmN4TWpnU2pnQXlfMGZIUHhOc2dfOGF2ZUl2NkVjejBHX3JyY3FJUkNkWl80MXEyT1FrWW04T3EwTEF1TWloYU9QQVVyS0tfU2hSc0J4ak40UkhfV1ZmV1Q4c0dWTHhTTHE4akNud2xNZTJ4bW9BMzhkRUtXSE16UTdWcUZjX0VRdF9Sd0tBdGYyQkF0VTJfZl9ZamVGZGgtbHFTZlBKLVg2d0FqUjhXdGpQeXdKcjF3MWUzREExMThfaWVQZlFpYjhtbXkwc2lSWF9CS2UtYmRPdXpkTFdBQjlURWJocEpJT3NUdmVjYm9TT0NIc29jNmJKWWZpczZ0dW9Ca1RnVmdpSUlEenpBdEJNc2RUOGNTaExwbjFzVGpJZ2JRS0tPVkY0ZXRWLUhUNWEzQSZoPUFmeDRxTmFaQnNoc1loREpPdGpkTVFJSTBuWEtpOHNUUzFxTmdzdkRINlU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2564429a-1e09-4768-8fc8-17da04fe4fa3" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/c47bc08c-6a2a-4949-9020-6b5b511d7ebd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "e8ba8555-4aeb-41d8-96ab-5e1d992b2d8a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202359Z:e8ba8555-4aeb-41d8-96ab-5e1d992b2d8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2587DD36404F428D8ADC74836718A354 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:59Z" + ], + "Date": [ + "Wed, 28 May 2025 20:23:59 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:53:48.1870423+05:30\",\r\n \"endTime\": \"2025-05-29T01:53:48.6870355+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "a58fe512-ddad-46ac-bdb6-7c3dd54b9642" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079,Microsoft.Compute/HighCostGetVMScaleSetResource;29,Microsoft.Compute/VMScaleSetVMViewsSubscriptionMaximum;29997" + ], + "x-ms-request-charge": [ + "3" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "edf15848-9d93-4c36-a124-8f2b2d33385d" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/91b228cf-ade5-488b-a86e-4175a4fc9e72" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0a0c2d79-e5ed-456d-a6ad-d6b43368592a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202405Z:0a0c2d79-e5ed-456d-a6ad-d6b43368592a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9DBFBFDE130425EAFE869DE49E9874F Ref B: MAA201060515019 Ref C: 2025-05-28T20:24:03Z" + ], + "Date": [ + "Wed, 28 May 2025 20:24:04 GMT" + ], + "Content-Length": [ + "16663" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9690_0\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/0\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"287b5edd-a72e-4e15-9522-238f529870a0\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_0_OsDisk_1_5df462e08ad44d8886caccb0368f88f5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_0_OsDisk_1_5df462e08ad44d8886caccb0368f88f5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000000\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/0/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_0/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_0/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9690_1\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"d3c24b40-fbfa-483f-9799-307818e3a184\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_1_OsDisk_1_df03ad8265384a5fb9cc35768cd80a8e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_1_OsDisk_1_df03ad8265384a5fb9cc35768cd80a8e\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000001\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/1/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_1/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9690_2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"fe438a57-4df7-41ef-a20b-01f6f530d677\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_2_OsDisk_1_9b6bbd4f2f0c492eb91f116fd240727a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_2_OsDisk_1_9b6bbd4f2f0c492eb91f116fd240727a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000002\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/2/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_2/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "RequestBody": "{\r\n \"instanceIds\": [\r\n \"0\"\r\n ]\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9254c947-377b-42b8-b179-a711433760ba" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/5f6ac59a-1870-4fd6-8661-a80e9a6531aa" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7d86e647-ae08-4cbe-a986-e1c069871a4f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202408Z:7d86e647-ae08-4cbe-a986-e1c069871a4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96455A7863934D60A112B83E86E28DB8 Ref B: MAA201060515017 Ref C: 2025-05-28T20:24:06Z" + ], + "Date": [ + "Wed, 28 May 2025 20:24:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "7a575816-86ee-407e-a333-5c2cbb2cbded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "RequestBody": "{\r\n \"instanceIds\": [\r\n \"1\"\r\n ]\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5129d3a-9b04-43ee-a652-67d36722bc20" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/c3c37aa2-f191-4564-a355-d508a659eb73" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e9863095-1e9a-47a0-a17d-b339367aac33" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202512Z:e9863095-1e9a-47a0-a17d-b339367aac33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CEFD4E8EEC2B4BBCB55BC5F95E97506B Ref B: MAA201060516049 Ref C: 2025-05-28T20:25:10Z" + ], + "Date": [ + "Wed, 28 May 2025 20:25:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept-Language": [ + "en-US" + ], + "x-ms-client-request-id": [ + "510132d9-2d89-448d-ac09-065864562367" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "RequestBody": "{\r\n \"instanceIds\": [\r\n \"2\"\r\n ]\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/VMScaleSetActionsSubscriptionMaximum;1499,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5999,Microsoft.Compute/VmssQueuedVMOperations;0" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f2f5aa3-aa92-408b-bb62-06de4052ec5a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/38d1b301-1c05-472a-8caf-412360bdb48f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0bc011a9-f1e5-4c49-9d46-28b04b22f846" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202621Z:0bc011a9-f1e5-4c49-9d46-28b04b22f846" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ACB428114EEE4A1190FD48AB85FF4AA4 Ref B: MAA201060516053 Ref C: 2025-05-28T20:26:17Z" + ], + "Date": [ + "Wed, 28 May 2025 20:26:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2NDgwMDE2NDIzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPU96d2ZuRVh5YXpMQlc3dG81MkdObEFXNV9TTG1BRFRlWnRYM0Q2d0ZCaXZwUFF4UW1jckJIQUs2VGRURG5yeFNJbF9uRUxTeHAtNFZiV0VYQWN3WG1rS0FydnN3ZzJ1eEZnRTdQWkxNekRDNUdyU0hhSG9Fcjk3R1FFSE1CV3c5M0NHM2VPQlVfVVpnNjcxclQ1MUpQeUhCZENxeEYyelRwVndUVFBiMG5kaDNncVctWVVmVHp0M3FhMDNUWUZYN0pCZWpoaFl2eC1LaVRhYWxpMmlmR0kwWHRIQ1N0VWVzQW1vcEFQbUhTb1cwbDNSM2w4RURuM2piU2lnWjVIc0h1anhCZW5GWGI5Nkt1MHpaemp6MlhZbEFhQkZZVUE1QzhCXzZ2MnBKdWNfbmZKN0NSTHZtY25JY3RvTGNfTlBmaHEtNUx2UzhYcGo5b0F2eDhkZElydyZoPUZ3RmlxZXAxMk9LUXU3emxyTjhMdVlRZ3lZclc2NVRqNnZsWXRmNGpHbDg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3538924-61d3-4f6a-ad13-72ceaf231c6a" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d34e8c4e-9aad-4212-a905-9c41b16a65d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "0334c5b6-1b47-4227-8548-918e954c150b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202438Z:0334c5b6-1b47-4227-8548-918e954c150b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C72F3E3577643C280260A7EBE178ACC Ref B: MAA201060515017 Ref C: 2025-05-28T20:24:38Z" + ], + "Date": [ + "Wed, 28 May 2025 20:24:37 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:54:07.7648903+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9254c947-377b-42b8-b179-a711433760ba\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2NDgwMDE2NDIzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPU96d2ZuRVh5YXpMQlc3dG81MkdObEFXNV9TTG1BRFRlWnRYM0Q2d0ZCaXZwUFF4UW1jckJIQUs2VGRURG5yeFNJbF9uRUxTeHAtNFZiV0VYQWN3WG1rS0FydnN3ZzJ1eEZnRTdQWkxNekRDNUdyU0hhSG9Fcjk3R1FFSE1CV3c5M0NHM2VPQlVfVVpnNjcxclQ1MUpQeUhCZENxeEYyelRwVndUVFBiMG5kaDNncVctWVVmVHp0M3FhMDNUWUZYN0pCZWpoaFl2eC1LaVRhYWxpMmlmR0kwWHRIQ1N0VWVzQW1vcEFQbUhTb1cwbDNSM2w4RURuM2piU2lnWjVIc0h1anhCZW5GWGI5Nkt1MHpaemp6MlhZbEFhQkZZVUE1QzhCXzZ2MnBKdWNfbmZKN0NSTHZtY25JY3RvTGNfTlBmaHEtNUx2UzhYcGo5b0F2eDhkZElydyZoPUZ3RmlxZXAxMk9LUXU3emxyTjhMdVlRZ3lZclc2NVRqNnZsWXRmNGpHbDg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc716a38-f1a5-4827-9667-46a776fded31" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/f82bff50-7380-4215-af7e-1ce0ea4eed6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "7211b0b1-01ed-4478-87b1-9e73d07d7b98" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202509Z:7211b0b1-01ed-4478-87b1-9e73d07d7b98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 46B84059007143099B6CADC638DD837D Ref B: MAA201060515017 Ref C: 2025-05-28T20:25:08Z" + ], + "Date": [ + "Wed, 28 May 2025 20:25:09 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:54:07.7648903+05:30\",\r\n \"endTime\": \"2025-05-29T01:54:48.5767874+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9254c947-377b-42b8-b179-a711433760ba\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNjQ4MDAxNjQyMyZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1PendmbkVYeWF6TEJXN3RvNTJHTmxBVzVfU0xtQURUZVp0WDNENndGQml2cFBReFFtY3JCSEFLNlRkVERucnhTSWxfbkVMU3hwLTRWYldFWEFjd1hta0tBcnZzd2cydXhGZ0U3UFpMTXpEQzVHclNIYUhvRXI5N0dRRUhNQld3OTNDRzNlT0JVX1VaZzY3MXJUNTFKUHlIQmRDcXhGMnpUcFZ3VFRQYjBuZGgzZ3FXLVlVZlR6dDNxYTAzVFlGWDdKQmVqaGhZdngtS2lUYWFsaTJpZkdJMFh0SENTdFVlc0Ftb3BBUG1IU29XMGwzUjNsOEVEbjNqYlNpZ1o1SHNIdWp4QmVuRlhiOTZLdTB6WnpqejJYWWxBYUJGWVVBNUM4Ql82djJwSnVjX25mSjdDUkx2bWNuSWN0b0xjX05QZmhxLTVMdlM4WHBqOW9Bdng4ZGRJcncmaD1Gd0ZpcWVwMTJPS1F1N3psck44THVZUWd5WXJXNjVUajZ2bFl0ZjRqR2w4", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d233ebce-4551-423d-af89-7adb2e19f651" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/ace58ad9-e02a-4648-933d-0cb7961a8659" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "803398d6-f2bb-4040-a224-33d386a50a92" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202510Z:803398d6-f2bb-4040-a224-33d386a50a92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9907ADBAB90D4D7B910E9F198E58EBD1 Ref B: MAA201060515017 Ref C: 2025-05-28T20:25:09Z" + ], + "Date": [ + "Wed, 28 May 2025 20:25:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3MTIzNjQxOTQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXFnYnlJWl81ZTBMbl9ZVzhvRnlZYk8tNnlkMGlUam1PbHpZU0FsSUlhTUc1Mmhoc2JObkstYVItVG40UjM5NzZDZk51eXc5Y1dUN2Y3aFYyNnNINHdjZmZjOHhaS19OTWhYeHo1cDM2M0xjY3ZrVnJKQUZSUWppSFU5clJ1clU2OHJJQ1dfTGNDREpyU0VkSXB1VmViNjlnbjdBaWxiMzNhV1Nvd0o0NVVDZV9TU0ZJZWdlWnlXU2hfSjhaYmhXTDVhS0FUUXRab1l6VzZ4ZzdIdTJDcVVqSkZRdmstLVo1SnlDM1Vfd1F6VGlFeXpZMWt3cFkyWWgtaU5CSGZMZGpMTElVZWticlRodmttVG96cHhIeGM1bHRBQWhHZFl3dENraElueTRHbE1la0s3cUd3cWNTcnAxTE9OU3J6b2s0M1R1RE0tSlprTm16ak1QNFA3MkhLQSZoPXg1Nm1uMTloaHdRM2hvWXJaejNZZWZkb1RJVG9IUzV0a2NLaGl5dmVtUjA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a575816-86ee-407e-a333-5c2cbb2cbded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88781195-56f6-45e6-8206-6e8344fd3d3e" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/9133e9de-a97f-47d7-95d0-c9a39df9e18a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "fea11790-2d5c-43a8-95a5-8d8d663e6af5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202542Z:fea11790-2d5c-43a8-95a5-8d8d663e6af5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C1F79220E424960AE5AD48D92B33F3F Ref B: MAA201060516049 Ref C: 2025-05-28T20:25:42Z" + ], + "Date": [ + "Wed, 28 May 2025 20:25:42 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:55:12.170208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5129d3a-9b04-43ee-a652-67d36722bc20\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3MTIzNjQxOTQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXFnYnlJWl81ZTBMbl9ZVzhvRnlZYk8tNnlkMGlUam1PbHpZU0FsSUlhTUc1Mmhoc2JObkstYVItVG40UjM5NzZDZk51eXc5Y1dUN2Y3aFYyNnNINHdjZmZjOHhaS19OTWhYeHo1cDM2M0xjY3ZrVnJKQUZSUWppSFU5clJ1clU2OHJJQ1dfTGNDREpyU0VkSXB1VmViNjlnbjdBaWxiMzNhV1Nvd0o0NVVDZV9TU0ZJZWdlWnlXU2hfSjhaYmhXTDVhS0FUUXRab1l6VzZ4ZzdIdTJDcVVqSkZRdmstLVo1SnlDM1Vfd1F6VGlFeXpZMWt3cFkyWWgtaU5CSGZMZGpMTElVZWticlRodmttVG96cHhIeGM1bHRBQWhHZFl3dENraElueTRHbE1la0s3cUd3cWNTcnAxTE9OU3J6b2s0M1R1RE0tSlprTm16ak1QNFA3MkhLQSZoPXg1Nm1uMTloaHdRM2hvWXJaejNZZWZkb1RJVG9IUzV0a2NLaGl5dmVtUjA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a575816-86ee-407e-a333-5c2cbb2cbded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1a49927-f7e6-4e84-a494-de15730944a2" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/65d08be9-72cc-403c-9597-8ee81039778c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "dc29613c-768e-4a19-894c-ec082a534931" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202615Z:dc29613c-768e-4a19-894c-ec082a534931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E23A13036B94F488EEA473D37E68711 Ref B: MAA201060516049 Ref C: 2025-05-28T20:26:14Z" + ], + "Date": [ + "Wed, 28 May 2025 20:26:14 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:55:12.170208+05:30\",\r\n \"endTime\": \"2025-05-29T01:56:13.0131407+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f5129d3a-9b04-43ee-a652-67d36722bc20\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNzEyMzY0MTk0NSZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1xZ2J5SVpfNWUwTG5fWVc4b0Z5WWJPLTZ5ZDBpVGptT2x6WVNBbElJYU1HNTJoaHNiTm5LLWFSLVRuNFIzOTc2Q2ZOdXl3OWNXVDdmN2hWMjZzSDR3Y2ZmYzh4WktfTk1oWHh6NXAzNjNMY2N2a1ZySkFGUlFqaUhVOXJSdXJVNjhySUNXX0xjQ0RKclNFZElwdVZlYjY5Z243QWlsYjMzYVdTb3dKNDVVQ2VfU1NGSWVnZVp5V1NoX0o4WmJoV0w1YUtBVFF0Wm9Zelc2eGc3SHUyQ3FVakpGUXZrLS1aNUp5QzNVX3dRelRpRXl6WTFrd3BZMlloLWlOQkhmTGRqTExJVWVrYnJUaHZrbVRvenB4SHhjNWx0QUFoR2RZd3RDa2hJbnk0R2xNZWtLN3FHd3FjU3JwMUxPTlNyem9rNDNUdURNLUpaa05tempNUDRQNzJIS0EmaD14NTZtbjE5aGh3UTNob1lyWnozWWVmZG9USVRvSFM1dGtjS2hpeXZlbVIw", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a575816-86ee-407e-a333-5c2cbb2cbded" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a51b55a1-ae3c-40f2-a776-8b3c34b99971" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/6c6eca7e-0064-49ed-bb7a-09c823fff984" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ad093c9a-69ae-4290-a0dd-5ea5f2a060a3" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202616Z:ad093c9a-69ae-4290-a0dd-5ea5f2a060a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F79F9393AFF84FBFBEE5F26E23D2FBBC Ref B: MAA201060516049 Ref C: 2025-05-28T20:26:15Z" + ], + "Date": [ + "Wed, 28 May 2025 20:26:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3ODEwNDMxMTAxJmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9UU80eENDOGZhWHJUX1NadTRiYjYtcUFiY21SdWhQTjVNQmx0QXpRNlBtM3VuODR2aVViSGdpQ1RveGlId0dVdmVsOFRZcU5Oa1M2S2xsUFVBQktKV1JRR1BzLUhhZnBpVzl3bFVGTW1rUENXS2pZQWtXdEpWc2NlaEdDdEUzQ24zSzZ2VzFDMkdvMDJtOGNqRHdaLUVGNGxZUmVyYmU4ZkpfbGRaU2hkOUw4cW9BTDRpUVVha2xyNHM3TDhoa1FXdEYxdWtXeXd6QzRUYkltd3BOcGZjay1NVTdLOGRkR2dHRkNfQUpRWlZDYmI4RXBVUmo0bmlnT3pRRXpXOW1xZmJpaXhPYTdsRC1UdTBuTWlnSGFTeWMtOHA2S2RQZXRKRDQ0ZW1EdkNjOTVGOGh3NURCVHNrVDlaUTM1RFB3NXRsZUVlaUtKRGFFQnQ0NWp6UWRjeGdnJmg9b3Z4a2Z5N0VjWVlCUXhtcWVlUmNWNGIyaFJiU0JETC1leEkwU3VZLW5nNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "510132d9-2d89-448d-ac09-065864562367" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e4c7f48c-e171-4a14-93b4-a0092125ec26" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/3c1c6bd7-1d1d-4900-9dcd-6930c3ac4f8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "945fe881-7306-4b29-b63e-eb245f71c48e" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202651Z:945fe881-7306-4b29-b63e-eb245f71c48e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 196B7252E47A4443B1B9150464F81780 Ref B: MAA201060516053 Ref C: 2025-05-28T20:26:51Z" + ], + "Date": [ + "Wed, 28 May 2025 20:26:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:56:20.6849264+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f2f5aa3-aa92-408b-bb62-06de4052ec5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3ODEwNDMxMTAxJmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9UU80eENDOGZhWHJUX1NadTRiYjYtcUFiY21SdWhQTjVNQmx0QXpRNlBtM3VuODR2aVViSGdpQ1RveGlId0dVdmVsOFRZcU5Oa1M2S2xsUFVBQktKV1JRR1BzLUhhZnBpVzl3bFVGTW1rUENXS2pZQWtXdEpWc2NlaEdDdEUzQ24zSzZ2VzFDMkdvMDJtOGNqRHdaLUVGNGxZUmVyYmU4ZkpfbGRaU2hkOUw4cW9BTDRpUVVha2xyNHM3TDhoa1FXdEYxdWtXeXd6QzRUYkltd3BOcGZjay1NVTdLOGRkR2dHRkNfQUpRWlZDYmI4RXBVUmo0bmlnT3pRRXpXOW1xZmJpaXhPYTdsRC1UdTBuTWlnSGFTeWMtOHA2S2RQZXRKRDQ0ZW1EdkNjOTVGOGh3NURCVHNrVDlaUTM1RFB3NXRsZUVlaUtKRGFFQnQ0NWp6UWRjeGdnJmg9b3Z4a2Z5N0VjWVlCUXhtcWVlUmNWNGIyaFJiU0JETC1leEkwU3VZLW5nNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "510132d9-2d89-448d-ac09-065864562367" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "84036969-e81a-4cee-87d5-22c4f62e6c37" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/2539b1bf-5bb4-4f2d-a596-4ca53fa841f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "55ee7f99-b54b-44fb-926d-1a43b2288e0b" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202722Z:55ee7f99-b54b-44fb-926d-1a43b2288e0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FDE9AF9D9294127BB9C9C13C1EAE2B1 Ref B: MAA201060516053 Ref C: 2025-05-28T20:27:21Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:22 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:56:20.6849264+05:30\",\r\n \"endTime\": \"2025-05-29T01:57:21.5591688+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f2f5aa3-aa92-408b-bb62-06de4052ec5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNzgxMDQzMTEwMSZjPU1JSUlGakNDQnY2Z0F3SUJBZ0lUSGdiaHBhVzVpdVdCYmhFRDdRQUFCdUdscFRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpVd05UQTJNRFV5TURFeFdoY05Nall3TlRBeE1EVXlNREV4V2pDQmpERUxNQWtHQTFVRUJoTUNWVk14Q3pBSkJnTlZCQWdUQWxkQk1SQXdEZ1lEVlFRSEV3ZFNaV1J0YjI1a01SNHdIQVlEVlFRS0V4Vk5hV055YjNOdlpuUWdRMjl5Y0c5eVlYUnBiMjR4UGpBOEJnTlZCQU1UTldGemVXNWpiM0JsY21GMGFXOXVjMmxuYm1sdVoyTmxjblJwWm1sallYUmxMbTFoYm1GblpXMWxiblF1WVhwMWNtVXVZMjl0TUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUEzU1JKazNiM2l6aVFIbjhZRXBuTXdVcVVBR0puTmgycFJoVzNTOGFveWZQZVZkR2x5MF9vRE9pc3l0RmthNlo4LVZKblA3bHdvV2lVU1JFMEQwVjZYd1BwcWZzZGJ0QzlBZHMxRHJkWHByNmhFV0YtWGVHNm1sanRnSlBRMEEyT2ZHWnFHaHNISWJ6ZlJtZ2lrUmZjMzkwelhRN2x6Uk9saG1mWXFOUzM0bU14SklBSWwzcm82YV9RTGM4dFhiZzh2MXVhbWRDSV9ENjhaTWhYQXVtRHRuZ2xlMFlwaVp4dmZRUU1pbXRFa0w4VWY1am5sZWZ3SVRXYW1HR2czVjc2d280aDBsdTBRSzVTWElSTEY5TEpCX3ZIR183X29XZWhPNUZkMEVUcXBFcXRNT2YwaTJIWWMxWXFvdnF3R2ZoeHFZcllHTURncUFleWNMdGRyQU04Q1FJREFRQUJvNElFdGpDQ0JMSXdKd1lKS3dZQkJBR0NOeFVLQkJvd0dEQUtCZ2dyQmdFRkJRY0RBVEFLQmdnckJnRUZCUWNEQWpBOUJna3JCZ0VFQVlJM0ZRY0VNREF1QmlZckJnRUVBWUkzRlFpR2tPTU5oTlcwZUlUeGl6NkZtOTBXenAwU2dXQ0M5ZllyZ19MUklBSUJaQUlCQ2pDQ0Fjc0dDQ3NHQVFVRkJ3RUJCSUlCdlRDQ0Fia3dZd1lJS3dZQkJRVUhNQUtHVjJoMGRIQTZMeTlqY213dWJXbGpjbTl6YjJaMExtTnZiUzl3YTJscGJtWnlZUzlEWlhKMGN5OUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJERXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd5TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRFF1WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdIUVlEVlIwT0JCWUVGS3R1TS0xMG5ReTB3VWdidmVseE9PaU94bk1FTUE0R0ExVWREd0VCX3dRRUF3SUZvREJBQmdOVkhSRUVPVEEzZ2pWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTWUdBMVVkSHdTQ0FSMHdnZ0VaTUlJQkZhQ0NBUkdnZ2dFTmhqOW9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlExSk1MMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213ekxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY213d2daMEdBMVVkSUFTQmxUQ0JrakFNQmdvckJnRUVBWUkzZXdFQk1HWUdDaXNHQVFRQmdqZDdBZ0l3V0RCV0JnZ3JCZ0VGQlFjQ0FqQktIa2dBTXdBekFHVUFNQUF4QURrQU1nQXhBQzBBTkFCa0FEWUFOQUF0QURRQVpnQTRBR01BTFFCaEFEQUFOUUExQUMwQU5RQmlBR1FBWVFCbUFHWUFaQUExQUdVQU13QXpBR1F3REFZS0t3WUJCQUdDTjNzREFqQU1CZ29yQmdFRUFZSTNld1FDTUI4R0ExVWRJd1FZTUJhQUZQRkdhTWJ4d19BckxYMkxhdUd5LWI0MV9ORkJNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01CQmdnckJnRUZCUWNEQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQU5PYmhfOGlUVDJnaUhrVXk3b1RxYXBVR2ZKWVp6UW9GMU9nNGhkSklIVnkyVzFDcllOcllxTGxtRnVhSWF5NU1YXzgxUWFYY1pOa1B2dHNZWXlROUFsS1c4cWQ2czl4dW9CZ3ZVcEo3Ukt3NDBab1RHN0ZSQklKaVQyV2UwU3lXc0x4Y3pfNExDV1oxQ2Y1b2xZd0xaXzhVM2xPX25udkRETXJsRmhiOVc5ZVEtRDRVRXcxRzRtRVg2UHFKSlNvS1gxRDBMYzdCZEY3c3lQb3RNUWVuMDFoY1VMaG1EWXZGdUdJVWd5cllZZzZQTHZQRnNwTWdlenhyVWdhZXpCcUplUXJMejNoc2djbHpPZnNGZXB1QUV0c3B4cE5pbTY3X0Y3VXE5cGxSQjV4MFJDWno4UkhTQ2dxOUNLb2o3dzg1NThyRlhGTVctNDA3OURaZGdHLW5pUSZzPVFPNHhDQzhmYVhyVF9TWnU0YmI2LXFBYmNtUnVoUE41TUJsdEF6UTZQbTN1bjg0dmlVYkhnaUNUb3hpSHdHVXZlbDhUWXFOTmtTNktsbFBVQUJLSldSUUdQcy1IYWZwaVc5d2xVRk1ta1BDV0tqWUFrV3RKVnNjZWhHQ3RFM0NuM0s2dlcxQzJHbzAybThjakR3Wi1FRjRsWVJlcmJlOGZKX2xkWlNoZDlMOHFvQUw0aVFVYWtscjRzN0w4aGtRV3RGMXVrV3l3ekM0VGJJbXdwTnBmY2stTVU3SzhkZEdnR0ZDX0FKUVpWQ2JiOEVwVVJqNG5pZ096UUV6VzltcWZiaWl4T2E3bEQtVHUwbk1pZ0hhU3ljLThwNktkUGV0SkQ0NGVtRHZDYzk1RjhodzVEQlRza1Q5WlEzNURQdzV0bGVFZWlLSkRhRUJ0NDVqelFkY3hnZyZoPW92eGtmeTdFY1lZQlF4bXFlZVJjVjRiMmhSYlNCREwtZXhJMFN1WS1uZzQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "510132d9-2d89-448d-ac09-065864562367" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + ], + "x-ms-need-to-refresh-epl-cache": [ + "False" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93e79cf8-b61c-4cc4-9376-643350178884" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/ad470f15-77fc-4951-9334-fd565b5a87f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "ec461b7a-f73f-491c-8663-2716c4fbdfc6" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202723Z:ec461b7a-f73f-491c-8663-2716c4fbdfc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0C1967820C8145CFB043681DBA5DF3BA Ref B: MAA201060516053 Ref C: 2025-05-28T20:27:23Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84bab0c1-b8aa-4197-98f9-59fc053543b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6edae31c-2c2e-4481-8d35-8158d7214d1c" + ], + "x-ms-correlation-request-id": [ + "8a60bc8f-7f61-4318-8838-0344e67e387c" + ], + "x-ms-arm-service-request-id": [ + "52e60aae-4ab1-4ead-aebc-2772f3af1db4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d5eaf117-1e0f-4a90-b201-f3e760bf92b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202725Z:8a60bc8f-7f61-4318-8838-0344e67e387c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF94F50E58924F62AC29BDB53F849718 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:24Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:24 GMT" + ], + "Content-Length": [ + "257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + ], + "x-ms-request-id": [ + "98595707-8855-4287-9f7c-e32b0ba896ca" + ], + "x-ms-correlation-request-id": [ + "a200a4b2-6515-4c5f-b0de-50fa7281870d" + ], + "x-ms-arm-service-request-id": [ + "d198a866-2652-4f58-b7f9-d8eaebf65536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d0c485a6-cf19-4a6e-9f12-3e077a0a93f0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202738Z:a200a4b2-6515-4c5f-b0de-50fa7281870d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A5CC5F44500C4A43AD2C9C1438DFD161 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:38Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:38 GMT" + ], + "Content-Length": [ + "812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca5d3969-9bff-44e6-add8-9c569f57c616" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + ], + "x-ms-request-id": [ + "6f372441-efae-4e19-86e6-e3a4f191528c" + ], + "x-ms-correlation-request-id": [ + "7121f6d9-ae23-4e5a-a8a1-f100d87d8b73" + ], + "x-ms-arm-service-request-id": [ + "1d27c194-6549-49da-a3b0-7466a4525a37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/61ace9f2-06e3-4bcd-9baa-f82329d968b2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1098" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16498" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202739Z:7121f6d9-ae23-4e5a-a8a1-f100d87d8b73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD6F7FD9EF7A43D7971532D4E4245A34 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:38Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:38 GMT" + ], + "Content-Length": [ + "812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e516a477-bd87-4f8e-9e88-ee80050d2495" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + ], + "x-ms-request-id": [ + "2d73e243-8aee-4c51-bb53-8c92bdbefe5b" + ], + "x-ms-correlation-request-id": [ + "6159f541-521c-4963-b551-02fd7c12fef3" + ], + "x-ms-arm-service-request-id": [ + "475bda37-7cd8-4515-ad85-7cb7a3d47551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/cf1a8161-3500-4aed-a5d8-44e9da1c64c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202742Z:6159f541-521c-4963-b551-02fd7c12fef3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A382B0D66F94F12B9EB52E4270FA59B Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:42Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:42 GMT" + ], + "Content-Length": [ + "812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71d45fca-3f75-4585-a577-6f0f0f5c8593" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "460" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"targetType\": \"AzureVMSS\",\r\n \"storageLocation\": {\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c32edbf3-af4d-4773-9044-4af791f433c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/c32edbf3-af4d-4773-9044-4af791f433c2?api-version=2024-07-01&t=638840608474021476&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=F6N2X6tNjlkw7jnODEliJIqROzaJbW3ejYBuxp5tk0jqoPDYvamrQJnKMzTf20JvG4kvBAteQhNxrM4ZrNMkEoveibhyaHnhucRwyIsgPPuV3vef14PtiSO6kqJL3Z476NAp9valdFpKbCoLO80_bnZGODBgg_R8qyFfVbWCkf_xE9SFHQsdlJeo8plWs6vksXChZymzXgCuOChK8RLx5SMcNF6dg2OK01eD0w7t4vcqvYvbi8Gqa14GQ69IS15nW7WXe-Sx39-r3c9bX7Urrnp7BpTm1_ExH3z0TjcDhfDHCN3Zs0HYT5o54UB7eyOk32YXbp82pAyR5tKqNBW4EQ&h=6t7LWIuheRgduywM_t_k515TKAMOXtULe_2TkfLZKHk" + ], + "x-ms-correlation-request-id": [ + "d05cc341-1790-4fcc-83ba-a6fc91e8651e" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "f2bf17b1-153f-4329-8501-bf7d4668a141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/09a49c7e-f126-4105-a655-6929b0f03da4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202727Z:d05cc341-1790-4fcc-83ba-a6fc91e8651e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1D0512EC94F34A96953F10E34E6C0757 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:25Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:26 GMT" + ], + "Content-Length": [ + "811" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"fa54c8aa-827e-4d55-a232-fa5d245d5bb4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/c32edbf3-af4d-4773-9044-4af791f433c2?api-version=2024-07-01&t=638840608474021476&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=F6N2X6tNjlkw7jnODEliJIqROzaJbW3ejYBuxp5tk0jqoPDYvamrQJnKMzTf20JvG4kvBAteQhNxrM4ZrNMkEoveibhyaHnhucRwyIsgPPuV3vef14PtiSO6kqJL3Z476NAp9valdFpKbCoLO80_bnZGODBgg_R8qyFfVbWCkf_xE9SFHQsdlJeo8plWs6vksXChZymzXgCuOChK8RLx5SMcNF6dg2OK01eD0w7t4vcqvYvbi8Gqa14GQ69IS15nW7WXe-Sx39-r3c9bX7Urrnp7BpTm1_ExH3z0TjcDhfDHCN3Zs0HYT5o54UB7eyOk32YXbp82pAyR5tKqNBW4EQ&h=6t7LWIuheRgduywM_t_k515TKAMOXtULe_2TkfLZKHk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MzMmVkYmYzLWFmNGQtNDc3My05MDQ0LTRhZjc5MWY0MzNjMj9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NDc0MDIxNDc2JmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9RjZOMlg2dE5qbGt3N2puT0RFbGlKSXFST3phSmJXM2VqWUJ1eHA1dGswanFvUERZdmFtclFKbktNelRmMjBKdkc0a3ZCQXRlUWhOeHJNNFpyTk1rRW92ZWliaHlhSG5odWNSd3lJc2dQUHVWM3ZlZjE0UHRpU082a3FKTDNaNDc2TkFwOXZhbGRGcEtiQ29MTzgwX2JuWkdPREJnZ19SOHF5RmZWYldDa2ZfeEU5U0ZIUXNkbEplbzhwbFdzNnZrc1hDaFp5bXpYZ0N1T0NoSzhSTHg1U01jTkY2ZGcyT0swMWVEMHc3dDR2Y3F2WXZiaThHcWExNEdRNjlJUzE1blc3V1hlLVN4MzktcjNjOWJYN1Vycm5wN0JwVG0xX0V4SDN6MFRqY0RoZkRIQ04zWnMwSFlUNW81NFVCN2V5T2szMllYYnA4MnBBeVI1dEtxTkJXNEVRJmg9NnQ3TFdJdWhlUmdkdXl3TV90X2s1MTVUS0FNT1h0VUxlXzJUa2ZMWktIaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a85c2dc8-8352-4dd3-a1be-ee059d09df86" + ], + "x-ms-correlation-request-id": [ + "ae850f66-f7dc-4835-acd8-0dcdc21b5f2e" + ], + "x-ms-arm-service-request-id": [ + "d52e9458-0ed4-470f-b8ff-c1ad2d67e7fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d03c1983-4792-4fa3-b3ed-0ce86effa207" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "MALAYSIASOUTH:20250528T202738Z:ae850f66-f7dc-4835-acd8-0dcdc21b5f2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4F08A4804D94CDE8707496B4FF605A8 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:37Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:37 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652/queryStatus?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTIvcXVlcnlTdGF0dXM/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f3379ea-9c5f-49da-a910-7e939dd9006d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cee5190f-117d-45bb-86da-a6caba790595" + ], + "x-ms-correlation-request-id": [ + "acc76b62-7387-4080-9c7a-30399f5f4c76" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c8598cc0-b09c-4ba5-9e79-76b338646743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/ad87ac53-3c43-41a6-a6ad-7bd4d8683abe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202744Z:acc76b62-7387-4080-9c7a-30399f5f4c76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17BF208319DF460DBB030C692B2DE1BB Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:43Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:44 GMT" + ], + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2NlZTUxOTBmLTExN2QtNDViYi04NmRhLWE2Y2FiYTc5MDU5NT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NjQzNDQyMDY2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWhEVDN5QjVFQVhyU2wyRE1FdnAwOWpiWVY0MnpkZVkyNU5xUGtRNjJxNjE5SkFYdUFtc0FXLWs1OFlrWERzdjdyUFhfZ1JicDhaM0xrSUJiYXl1SENzd3Z6U2dmanlodU1tSWdhX0ctaXlwSU9laU1ldC1qQlNOb2RoczEtNXkta0NGOFdfc0VlLVJra25KbF9qbHRCNkFRcm1WMXN4VkMyMHlWSkRlcG5HMC1Bam1uOGlpQ3BJQkxfbVVJb0ZQTllTaW1qMXJiSFZ4M0I0OFZReGhvMXQzRGtnOHpfbllpMFBaYnhSbFEyVU1lbjljZU9SZmxzMTVWNEUtWE1PYmY1OE9ERWVvbFF3MXAtVlFOZ1ZVcmpjaHROTFB5b3hkV0w5MmR0OThYQ0Y0NXZZZnVYeXN1NTRmRmdDOW9rcGpnUXpRZXVrelVLTnRXdmQyd2pET0JuQSZoPUNKOFVQMUViRlJCblB4c3V0SzNFWHEyT1NXY3lpZXdaQnM5OFRDZWY5R3c=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608752475969&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=JycJmothaq9M4XWqcTJHi9GNtHVp1IPeZZOEDPuQl2qptGO58eQdXdgjbMrbjMxET6AFGaiApm5JFWKx7nKfqnkqRXmsCv1HCF8eMdm0dNze_ff7lDO1ujQbp3pzm7MpR4o3nYFM7FxMVMFn_h48RLfOHyubh7ZeFH7Onsi2IOUivB2j6wO6NHDIk4aJdQsvF2gENBhgI2Y3Utf_FY2rk9dHWQIuRfbZCty2upmsuKjCrLKvUy292z1hZoN4zyBXuk1w00NZEt6hQckicbpwbST78l5tbDCjHVUgupvmXd-EgNC96HNL9LTxWb7y8-f5X7ZaOD_YAIEEps4ZnGIAHA&h=VLoP6dVLhS59cxcacKU-7OTlgaRVeBlnE8eDiITwd6Q" + ], + "x-ms-request-id": [ + "cee5190f-117d-45bb-86da-a6caba790595" + ], + "x-ms-correlation-request-id": [ + "acc76b62-7387-4080-9c7a-30399f5f4c76" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c8598cc0-b09c-4ba5-9e79-76b338646743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d18b1942-c539-4c13-8306-f43a477a16f4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202755Z:44f3e045-40a1-45a6-badc-e507edee7af0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 32AB08D4A1034CDB90207BB5274DF9A0 Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:54Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:54 GMT" + ], + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2NlZTUxOTBmLTExN2QtNDViYi04NmRhLWE2Y2FiYTc5MDU5NT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NjQzNDQyMDY2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWhEVDN5QjVFQVhyU2wyRE1FdnAwOWpiWVY0MnpkZVkyNU5xUGtRNjJxNjE5SkFYdUFtc0FXLWs1OFlrWERzdjdyUFhfZ1JicDhaM0xrSUJiYXl1SENzd3Z6U2dmanlodU1tSWdhX0ctaXlwSU9laU1ldC1qQlNOb2RoczEtNXkta0NGOFdfc0VlLVJra25KbF9qbHRCNkFRcm1WMXN4VkMyMHlWSkRlcG5HMC1Bam1uOGlpQ3BJQkxfbVVJb0ZQTllTaW1qMXJiSFZ4M0I0OFZReGhvMXQzRGtnOHpfbllpMFBaYnhSbFEyVU1lbjljZU9SZmxzMTVWNEUtWE1PYmY1OE9ERWVvbFF3MXAtVlFOZ1ZVcmpjaHROTFB5b3hkV0w5MmR0OThYQ0Y0NXZZZnVYeXN1NTRmRmdDOW9rcGpnUXpRZXVrelVLTnRXdmQyd2pET0JuQSZoPUNKOFVQMUViRlJCblB4c3V0SzNFWHEyT1NXY3lpZXdaQnM5OFRDZWY5R3c=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608768606539&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=du74wl3dp37nysNJ2K1bJvEnOTE4xlfUjaLRkdkxxXmneIffTtRJNnWQ8oFfFCh5aa2OuNK88M4yrLBDghxBHXR2MMsMXlp69OZahlr3IIgj2nMRvpo79k-Zl3u58ekoiqZU-aDmF4cOOgD2qFzC8Scg5bMHSuhhxoaP2Zs6xy1eDMQrtyMZvHnRV3iorEpsgTGy6nu6IhEcJ1byvTA4s1nxT1sMozhiAYaDe_A55YxgrZNBb-dx2B6QYxwsoX328Rrvm-vdLaIgSdIxC05Kym3GXg-NrXFBr17w22yYVz-Bbn8W1mJBT8O5TWPivb5TzQ9NYRviVgE_NBHJ-2OCXQ&h=xXvQkhTMTi7ciyxD0mv9JC-WESEs7XcVtzK5Pcpzcik" + ], + "x-ms-request-id": [ + "cee5190f-117d-45bb-86da-a6caba790595" + ], + "x-ms-correlation-request-id": [ + "acc76b62-7387-4080-9c7a-30399f5f4c76" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c8598cc0-b09c-4ba5-9e79-76b338646743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/bdc620f5-c3d9-4de2-8d16-c0441bb280e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202756Z:c2587369-038e-4e36-9b86-f868bf07a7c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D81BFE1C398E457AA28FEDF32CA4E82F Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:55Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:56 GMT" + ], + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652/stop?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTIvc3RvcD9hcGktdmVyc2lvbj0yMDI0LTA3LTAx", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "343b291a-e1d0-4f13-b037-1eedabc3e295" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608792060232&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=PimBHh2217BH8nUr-BCaOaKnh6Z7G9HtjQf048t4beHuCrHAdPmrzM85CMOBZxCkkNRYzrDUDMLwaW2bMv89A9xyreA_tjpdXlSnjlyFzhDJSoabq5pNAx3zR0symCHLoKvCv4oqaRzwFAlI1Zc3dV6-ja2EbewpwXH1mMRfNWerhelk-XD5LRYEeydZ8uq7Arojndvb6OwIoaGc37wxNoXh0EdYjhcNa9vYdBimNtH05PzkNd_TeBLfjVBdLaD8DuzgF-KqZTKnBqWYOe66Z-w7X7Ib8BYmS_zdlVyZVltzGXa40nbWOnqO5tuVotatg6gVXnBA-hOLuswyi4Nq4A&h=9vlmna2uII2TtSH0iHG_V873BHEkhhW_9ZuXhYa3TuU" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5f001021-5011-41a5-805c-7a63667c4707" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608791904103&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dk0FqJvxmoQEoWco2nosZ-zMV2WsZzWrP6eukYNCJIVsWqKBOnp_EYLWCw6OqhcrIuwt06gecDFIBgKxcjrs_ucn0ej0DXCHczzyM4O0LNMVOxGfoDox8nnsEK-pqjOWWF6kfr1ANk9eD9vTojaHrX91iz-6m40HGvKAlYPasKhLqGVe1OHBBRc3BF5E1Y1dPHAorQ4pSe2FA_8mBKQjWF0PJpcBqZQED2D9ny3sb4ypvPPdOkavY8i2K_IFbk2cdoo2y_CZEjl5W8HvS06FBvNfWraRea1_wVchulSWuqjydHUlhRfTUOwCnv-_xdRUUYx8X9Qvtcqx4PJP7Ze8yw&h=CTxP4jVHUiJ5yVnSA6qF-YgPGfWGqpmQUUUmdfeZcwU" + ], + "x-ms-correlation-request-id": [ + "ffdeb112-1b33-4d28-bdd9-644255ac4056" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "20efb2ee-56a7-4e21-acdb-4169f2ab9741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/7f12a991-5a1b-46a3-be1b-240cc3e280ca" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202759Z:ffdeb112-1b33-4d28-bdd9-644255ac4056" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B5B15DC1F5146AAA00BA646BB03BA49 Ref B: MAA201060513033 Ref C: 2025-05-28T20:27:57Z" + ], + "Date": [ + "Wed, 28 May 2025 20:27:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608791904103&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dk0FqJvxmoQEoWco2nosZ-zMV2WsZzWrP6eukYNCJIVsWqKBOnp_EYLWCw6OqhcrIuwt06gecDFIBgKxcjrs_ucn0ej0DXCHczzyM4O0LNMVOxGfoDox8nnsEK-pqjOWWF6kfr1ANk9eD9vTojaHrX91iz-6m40HGvKAlYPasKhLqGVe1OHBBRc3BF5E1Y1dPHAorQ4pSe2FA_8mBKQjWF0PJpcBqZQED2D9ny3sb4ypvPPdOkavY8i2K_IFbk2cdoo2y_CZEjl5W8HvS06FBvNfWraRea1_wVchulSWuqjydHUlhRfTUOwCnv-_xdRUUYx8X9Qvtcqx4PJP7Ze8yw&h=CTxP4jVHUiJ5yVnSA6qF-YgPGfWGqpmQUUUmdfeZcwU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVmMDAxMDIxLTUwMTEtNDFhNS04MDVjLTdhNjM2NjdjNDcwNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NzkxOTA0MTAzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWRrMEZxSnZ4bW9RRW9XY28ybm9zWi16TVYyV3NaeldyUDZldWtZTkNKSVZzV3FLQk9ucF9FWUxXQ3c2T3FoY3JJdXd0MDZnZWNERklCZ0t4Y2pyc191Y24wZWowRFhDSGN6enlNNE8wTE5NVk94R2ZvRG94OG5uc0VLLXBxak9XV0Y2a2ZyMUFOazllRDl2VG9qYUhyWDkxaXotNm00MEhHdktBbFlQYXNLaExxR1ZlMU9IQkJSYzNCRjVFMVkxZFBIQW9yUTRwU2UyRkFfOG1CS1FqV0YwUEpwY0JxWlFFRDJEOW55M3NiNHlwdlBQZE9rYXZZOGkyS19JRmJrMmNkb28yeV9DWkVqbDVXOEh2UzA2RkJ2TmZXcmFSZWExX3dWY2h1bFNXdXFqeWRIVWxoUmZUVU93Q252LV94ZFJVVVl4OFg5UXZ0Y3F4NFBKUDdaZTh5dyZoPUNUeFA0alZIVWlKNXlWblNBNnFGLVlnUEdmV0dxcG1RVVVVbWRmZVpjd1U=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "282dc4c7-b5f1-4744-85c9-dfa4e5081ab6" + ], + "x-ms-correlation-request-id": [ + "d64a9156-3fd2-41e1-b4b6-21ba891510cf" + ], + "x-ms-arm-service-request-id": [ + "c17c2ef9-8e39-4477-aad4-0ee77345da35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/6a33b88b-8b6f-4a3e-9855-992b3c21eada" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202810Z:d64a9156-3fd2-41e1-b4b6-21ba891510cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E197676F034040DFBE93425CF7EF422A Ref B: MAA201060513033 Ref C: 2025-05-28T20:28:09Z" + ], + "Date": [ + "Wed, 28 May 2025 20:28:09 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608792060232&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=PimBHh2217BH8nUr-BCaOaKnh6Z7G9HtjQf048t4beHuCrHAdPmrzM85CMOBZxCkkNRYzrDUDMLwaW2bMv89A9xyreA_tjpdXlSnjlyFzhDJSoabq5pNAx3zR0symCHLoKvCv4oqaRzwFAlI1Zc3dV6-ja2EbewpwXH1mMRfNWerhelk-XD5LRYEeydZ8uq7Arojndvb6OwIoaGc37wxNoXh0EdYjhcNa9vYdBimNtH05PzkNd_TeBLfjVBdLaD8DuzgF-KqZTKnBqWYOe66Z-w7X7Ib8BYmS_zdlVyZVltzGXa40nbWOnqO5tuVotatg6gVXnBA-hOLuswyi4Nq4A&h=9vlmna2uII2TtSH0iHG_V873BHEkhhW_9ZuXhYa3TuU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVmMDAxMDIxLTUwMTEtNDFhNS04MDVjLTdhNjM2NjdjNDcwNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NzkyMDYwMjMyJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPVBpbUJIaDIyMTdCSDhuVXItQkNhT2FLbmg2WjdHOUh0alFmMDQ4dDRiZUh1Q3JIQWRQbXJ6TTg1Q01PQlp4Q2trTlJZenJEVURNTHdhVzJiTXY4OUE5eHlyZUFfdGpwZFhsU25qbHlGemhESlNvYWJxNXBOQXgzelIwc3ltQ0hMb0t2Q3Y0b3FhUnp3RkFsSTFaYzNkVjYtamEyRWJld3B3WEgxbU1SZk5XZXJoZWxrLVhENUxSWUVleWRaOHVxN0Fyb2puZHZiNk93SW9hR2MzN3d4Tm9YaDBFZFlqaGNOYTl2WWRCaW1OdEgwNVB6a05kX1RlQkxmalZCZExhRDhEdXpnRi1LcVpUS25CcVdZT2U2NlotdzdYN0liOEJZbVNfemRsVnlaVmx0ekdYYTQwbmJXT25xTzV0dVZvdGF0ZzZnVlhuQkEtaE9MdXN3eWk0TnE0QSZoPTl2bG1uYTJ1SUkyVHRTSDBpSEdfVjg3M0JIRWtoaFdfOVp1WGhZYTNUdVU=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608908378427&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YeCCuWnVlRcnMyU1FPNllDOG7a465lzIhHHvSs5M7IBz1WprBxkEyHCZ3t5cyYdNuKatSNpM2NFyht_R-wiN-6aIr7va6YbwkuM56UkdM0-36DHCq8TerR6YVsHImoT5aU5WNPYHHG9xHgAaYooIRq79IM9RH36hrgLKcugvh3tYR41mV7dSn3Qsnhl2_tkWiIIpBx_Y13B3a0QWFn4LW8cEC7AtvkpNcWdjfhCAcgdd_5IXuG8E-eocr4Xl98MUKi4077mywgvRJ5_KgFBz9Mtv3Zi9kqjy3giPhH7ZOAxgAllezW3iZFsJXNO-EJ-zZJpg3FLO68bLVGF1_hSjKA&h=q_ULGoBRTroY_3IQ-iB1syNXWcRukgPFgmYcEHnvIvA" + ], + "x-ms-request-id": [ + "5f001021-5011-41a5-805c-7a63667c4707" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608908222191&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=b1qqV82e7H7L3YNTkANzaYxdxts3b4VvzrqdegFxKyYLE9gjKb7UsdNBg2jxvSNJLHkAWKn2X8l0Ubf6xsjb8fSZuKjudegfPFfX0m6S_SPLQdB6Zz3jQ9hHHMEmTZZdzLQsgR4a3UccBqvBU1-RRxX2puBKe1jSwBGomp_Cijb7Nl-qMQMUU1gigwwHsnfPthQg0ol-ClZYBQeabNtY64nAAhlskSyGnRk7lJkl1cRt-g3uJbVy-AAn2GS1bfiTAtnYxiPNBkohz9IINcopxk3uaJ6G62cnaHEHD6jeqaNv-r-ZCb0oFRrhmxbrX2O9U_L4YsEDDH09w-Nr78r1uA&h=pTv2UkPcLK3nvMxo114-ssAMV_rSOHpmVd-SKtpMkE0" + ], + "x-ms-correlation-request-id": [ + "ffdeb112-1b33-4d28-bdd9-644255ac4056" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "20efb2ee-56a7-4e21-acdb-4169f2ab9741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/593308ef-e4ec-44d2-9a26-3766c03e8577" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250528T202810Z:5c234544-f360-49b0-90aa-c208edf436c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DD8B30E4C2D4006B13B1DBC1C9F504A Ref B: MAA201060513033 Ref C: 2025-05-28T20:28:10Z" + ], + "Date": [ + "Wed, 28 May 2025 20:28:10 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 200 + } + ], + "Names": { + "Test-PacketCaptureV2WithRingBuffer": [ + "psnrp644", + "psnrp9690", + "psnrp6109", + "psnrp1519", + "psnrp2765" + ] + }, + "Variables": { + "SubscriptionId": "c9acd95d-34fe-4603-b50a-89c27c045b02" + } +} \ No newline at end of file diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 28f88ee8c9f9..efbb92a9e2f0 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -474,7 +474,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'New-AzNetworkWatcherPacketCaptureV2', 'New-AzNetworkWatcherProtocolConfiguration', 'New-AzO365PolicyProperty', 'New-AzOffice365PolicyProperty', - 'New-AzP2sVpnGateway', 'New-AzPacketCaptureFilterConfig', + 'New-AzP2sVpnGateway', 'New-AzPacketCaptureFilterConfig', + 'New-AzPacketCaptureSettingsConfig', 'New-AzPacketCaptureScopeConfig', 'New-AzPrivateDnsZoneConfig', 'New-AzPrivateDnsZoneGroup', 'New-AzPrivateEndpoint', 'New-AzPrivateEndpointIpConfiguration', 'New-AzPrivateLinkService', diff --git a/src/Network/Network/help/New-AzNetworkWatcherPacketCaptureV2.md b/src/Network/Network/help/New-AzNetworkWatcherPacketCaptureV2.md index 34bdc0967ff6..ec977f5d9724 100644 --- a/src/Network/Network/help/New-AzNetworkWatcherPacketCaptureV2.md +++ b/src/Network/Network/help/New-AzNetworkWatcherPacketCaptureV2.md @@ -15,31 +15,31 @@ V2 Version of Packet Capture Cmdlet which creates a new packet capture resource ### SetByResource (Default) ``` New-AzNetworkWatcherPacketCaptureV2 -NetworkWatcher -Name -TargetId - [-StorageAccountId ] [-StoragePath ] [-LocalFilePath ] - [-BytesToCapturePerPacket ] [-TotalBytesPerSession ] [-TimeLimitInSecond ] - [-Scope ] [-TargetType ] [-Filter ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-StorageAccountId ] [-StoragePath ] [-FilePath ] [-BytesToCapturePerPacket ] + [-TotalBytesPerSession ] [-TimeLimitInSecond ] [-Scope ] + [-TargetType ] [-Filter ] [-ContinuousCapture ] + [-LocalPath ] [-CaptureSettings ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByName ``` New-AzNetworkWatcherPacketCaptureV2 -NetworkWatcherName -ResourceGroupName -Name - -TargetId [-StorageAccountId ] [-StoragePath ] [-LocalFilePath ] + -TargetId [-StorageAccountId ] [-StoragePath ] [-FilePath ] [-BytesToCapturePerPacket ] [-TotalBytesPerSession ] [-TimeLimitInSecond ] - [-Scope ] [-TargetType ] [-Filter ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Scope ] [-TargetType ] [-Filter ] + [-ContinuousCapture ] [-LocalPath ] [-CaptureSettings ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByLocation ``` New-AzNetworkWatcherPacketCaptureV2 -Location -Name -TargetId - [-StorageAccountId ] [-StoragePath ] [-LocalFilePath ] - [-BytesToCapturePerPacket ] [-TotalBytesPerSession ] [-TimeLimitInSecond ] - [-Scope ] [-TargetType ] [-Filter ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-StorageAccountId ] [-StoragePath ] [-FilePath ] [-BytesToCapturePerPacket ] + [-TotalBytesPerSession ] [-TimeLimitInSecond ] [-Scope ] + [-TargetType ] [-Filter ] [-ContinuousCapture ] + [-LocalPath ] [-CaptureSettings ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -210,6 +210,41 @@ Scope : { In this example we create a packet capture named "PacketCaptureTest" with multiple filters and a time limit. Once the session is complete, it will be saved to the specified storage account. Note: The Azure Network Watcher extension must be installed on the target virtual machine scale set and on the respective instances in include scope adhering to the latest vmss model, to create packet captures. +### Example 4: Create a Packet Capture on a VMSS with continuous capture and its settings +```powershell +$nw = Get-AzResource | Where {$_.ResourceType -eq "Microsoft.Network/networkWatchers" -and $_.Location -eq "WestCentralUS" } +$networkWatcher = Get-AzNetworkWatcher -Name $nw.Name -ResourceGroupName $nw.ResourceGroupName + +$capSettings = New-AzPacketCaptureSettingsConfig -FileCount 2 -FileSizeInBytes 102400 -SessionTimeLimitInSeconds 60 + +New-AzNetworkWatcherPacketCaptureV2 -NetworkWatcher $networkWatcher -Name "PacketCaptureTest" -TargetId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/SampleVMSS" -BytesToCapturePerPacket 1 -ContinuousCapture $false -CaptureSettings $capSettings -LocalPath "/var/captures/test1.cap" +``` + +```output +Name : PacketCaptureTest +Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus/packetCaptures/PacketCaptureTest +Etag : W/"00000000-0000-0000-0000-000000000000" +ProvisioningState : Succeeded +Target : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contosoResourceGroup/providers/Microsoft.Compute/virtualMachineScaleSets/SampleVMSS +TargetType : AzureVMSS +BytesToCapturePerPacket : 1 +StorageLocation : { + "StoragePath": "", + "LocalPath": "/var/captures/test1.cap" + } +ContinuousCapture : true +CaptureSettings : { + "fileCount":"2", + "fileSizeInBytes":"102400", + "sessionTimeLimitInSeconds":"60" + } +Filters : [] +Scope : {} +``` + +In this example we create a packet capture named "PacketCaptureTest" with continuous capture as true along with capture settings. Once the session is complete, it will be saved to the specified storage account. +Note: The Azure Network Watcher extension must be installed on the target virtual machine scale set and all the respective instances adhering to the latest vmss model, to create packet captures. + ## PARAMETERS ### -AsJob @@ -242,6 +277,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -CaptureSettings +Filters for packet capture session. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSPacketCaptureSettings +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContinuousCapture +This continuous capture is a nullable boolean, which can hold 'null', 'true' or 'false' value. If we do not pass this parameter, it would be consider as 'null', default value is 'null'. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -257,6 +322,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FilePath +File path. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Filter Filters for packet capture session. @@ -272,8 +352,8 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -LocalFilePath -Local file path. +### -LocalPath +This path is valid if 'ContinuousCapture' is provided and required if no storage ID is provided, otherwise optional. Must include the name of the capture file (*.cap). ```yaml Type: System.String @@ -567,4 +647,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AzNetworkWatcherFlowLogStatus](./Get-AzNetworkWatcherFlowLogStatus.md) -[Get-AzNetworkWatcherConnectionMonitor](./Get-AzNetworkWatcherConnectionMonitor.md) +[Get-AzNetworkWatcherConnectionMonitor](./Get-AzNetworkWatcherConnectionMonitor.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzPacketCaptureSettingsConfig.md b/src/Network/Network/help/New-AzPacketCaptureSettingsConfig.md new file mode 100644 index 000000000000..b0dd88a29ecb --- /dev/null +++ b/src/Network/Network/help/New-AzPacketCaptureSettingsConfig.md @@ -0,0 +1,120 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://learn.microsoft.com/powershell/module/az.network/new-azpacketcapturesettingsconfig +schema: 2.0.0 +--- + +# New-AzPacketCaptureSettingsConfig + +## SYNOPSIS +Creates a new capture setting object. + +## SYNTAX + +``` +New-AzPacketCaptureSettingsConfig [-FileCount ] [-FileSizeInBytes ] + [-SessionTimeLimitInSeconds ] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The New-AzPacketCaptureSettingsConfig cmdlet creates a new packet capture settings object. +This object is being used as a parameter for creating a packet capture, in case, we want to utilize +the continuous capture capabilities and pass 'Continuous Capture' as true/false. + +This New-AzPacketCaptureSettingsConfig cmdlet creates an object of PSPacketCaptureSettings, which contains file count, file size in bytes and session time limit (in second) with default values. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> New-AzPacketCaptureSettingsConfig -FileCount 2 -FileSizeInBytes 102400 -SessionTimeLimitInSeconds 60 +``` + +In the above example, passing file count with file size and session time (in seconds). It will create an object. + +### Example 2 +```powershell +PS C:\> New-AzPacketCaptureSettingsConfig +``` + +In the above example, without passing any parameters. It will create an object with default values, + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FileCount +Number of file count. Default value is 10. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 10 +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -FileSizeInBytes +Number of bytes captured per packet. Default value is 104857600. + +```yaml +Type: System.Nullable`1[System.Int64] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 104857600 +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SessionTimeLimitInSeconds +Capture session in seconds. Default value is 86400. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 86400 +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +### System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSPacketCaptureSettings + +## NOTES + +## RELATED LINKS \ No newline at end of file From 0ec50e2f7e9ab13f8a63347104dc1a6c38027e66 Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Thu, 5 Jun 2025 13:13:41 +0530 Subject: [PATCH 3/6] Modified the change log as per the new offerings --- src/Network/Network/ChangeLog.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index c157429ac0db..0da935c9de2a 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,13 +19,15 @@ ---> ## Upcoming Release -* Onboarded Application Gateway WAF Exceptions cmdlet. - - `New-AzApplicationGatewayFirewallPolicyException` - -* Added properties 'ContinuousCapture', 'LocalPath', and 'CaptureSettings' to Packet capture V2 command along with update the old parameter as 'FilePath' as well as support for it for the following cmdlets: - - `New-AzPacketCaptureSettingsConfig` +* Added a new command which creates an object for CaptureSettings, and added properties 'FileCount', 'FileSizeInBytes', and 'SessionTimeLimitInSeconds', which helps to configure the capture settings for packet capture as well as support for it for the following cmdlets: + - `New-AzPacketCaptureSettingsConfig` + +* Added properties 'ContinuousCapture', 'LocalPath', and 'CaptureSettings' reference in Packet capture V2 command, as well as support for it for the following cmdlets: - `New-AzNetworkWatcherPacketCaptureV2` +* Onboarded Application Gateway WAF Exceptions cmdlet. + - `New-AzApplicationGatewayFirewallPolicyException` + ## Version 7.17.0 * Added properties 'PublicIpAddressesV6', 'PublicIpPrefixesV6', and 'SourceVirtualNetwork' to NatGateway, as well as support for it for the following cmdlets: - `New-AzNatGateway` From 252f3cd044dbc636c1764cfe91fcc059932adbdd Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Thu, 5 Jun 2025 15:38:33 +0530 Subject: [PATCH 4/6] StaticAnalysis issue --- .../Exceptions/Az.Network/ExampleIssues.csv | 6 +- .../Exceptions/Az.Network/SignatureIssues.csv | 924 +++++++++--------- 2 files changed, 467 insertions(+), 463 deletions(-) diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/ExampleIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/ExampleIssues.csv index 7d8be0cf8292..26bacca7f0d6 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/ExampleIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/ExampleIssues.csv @@ -1,2 +1,4 @@ -"Module","Cmdlet","Example","Line","RuleName","ProblemId","Severity","Description","Extent","Remediation" -"Az.Network","Add-AzVirtualNetworkPeering","2","5","Invalid_Cmdlet","5000","1","New-AzResourceGroup is not a valid command name.","New-AzResourceGroup -Name $rgName -Location westcentralus","Check the spell of New-AzResourceGroup." +Module,Cmdlet,Example,Line,RuleName,ProblemId,Severity,Description,Extent,Remediation +Az.Network,Add-AzVirtualNetworkPeering,2,5,Invalid_Cmdlet,5000,1,New-AzResourceGroup is not a valid command name.,New-AzResourceGroup -Name $rgName -Location westcentralus,Check the spell of New-AzResourceGroup. +Az.Network,New-AzPacketCaptureSettingsConfig,1,0,NeedDeleting,5050,1,The prompt of example need to be deleted.,D:\a\_work\1\s\src\Network\Network\help\New-AzPacketCaptureSettingsConfig.md,Delete the prompt of example. +Az.Network,New-AzPacketCaptureSettingsConfig,2,0,NeedDeleting,5050,1,The prompt of example need to be deleted.,D:\a\_work\1\s\src\Network\Network\help\New-AzPacketCaptureSettingsConfig.md,Delete the prompt of example. diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index d7e12b0dcbdd..c4db0e0efcbc 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -1,461 +1,463 @@ -"Module","ClassName","Target","Severity","ProblemId","Description","Remediation" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzVpnClientIpsecPolicy","1","8100","New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzVpnClientIpsecParameter","1","8100","New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue " -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8100","Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8100","New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSetting","1","8100","Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8100","Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand","Get-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand","New-AzApplicationGatewayConnectionDraining","1","8100","New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8100","Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8100","Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","New-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","Set-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand","New-AzApplicationGatewayProbeHealthResponseMatch","1","8100","New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8100","Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8100","New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand","Remove-AzApplicationGatewayFrontendIPConfig","1","8100","Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8100","Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand","Add-AzApplicationGatewayFrontendPort","1","8100","Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand","New-AzApplicationGatewayFrontendPort","1","8100","New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand","Remove-AzApplicationGatewayFrontendPort","1","8100","Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand","Set-AzApplicationGatewayFrontendPort","1","8100","Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8100","Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8100","New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand","Remove-AzApplicationGatewayIPConfiguration","1","8100","Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8100","Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8100","Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8100","New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand","Remove-AzApplicationGatewayHttpListener","1","8100","Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8100","Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8100","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8410","Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8100","New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8510","Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8100","Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8100","New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand","Remove-AzApplicationGatewayProbeConfig","1","8100","Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8100","Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand","Remove-AzApplicationGateway","1","8600","Cmdlet 'Remove-AzApplicationGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8100","Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8100","New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand","Remove-AzApplicationGatewayRedirectConfiguration","1","8100","Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8100","Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8100","Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8100","New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand","Remove-AzApplicationGatewayRequestRoutingRule","1","8100","Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8100","Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand","Set-AzApplicationGateway","1","8100","Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand","New-AzApplicationGatewaySku","1","8100","New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand","Set-AzApplicationGatewaySku","1","8100","Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand","Add-AzApplicationGatewaySslCertificate","1","8100","Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand","New-AzApplicationGatewaySslCertificate","1","8100","New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand","Remove-AzApplicationGatewaySslCertificate","1","8100","Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand","Set-AzApplicationGatewaySslCertificate","1","8100","Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand","New-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand","Set-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand","Start-AzApplicationGateway","1","8100","Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand","Stop-AzApplicationGateway","1","8100","Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8100","Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8100","New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand","Remove-AzApplicationGatewayUrlPathMapConfig","1","8100","Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8100","Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup","Remove-AzApplicationSecurityGroup","1","8600","Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan","Remove-AzDdosProtectionPlan","1","8600","Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand","Add-AzExpressRouteCircuitAuthorization","1","8100","Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand","New-AzExpressRouteCircuitAuthorization","1","8100","New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand","Remove-AzExpressRouteCircuitAuthorization","1","8100","Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8100","Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8100","New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand","Remove-AzLoadBalancerInboundNatPoolConfig","1","8100","Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8100","Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8100","Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8100","New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand","Remove-AzExpressRouteCircuitPeeringConfig","1","8100","Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8100","Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand","Remove-AzExpressRouteCircuit","1","8600","Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand","Set-AzExpressRouteCircuit","1","8100","Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand","Add-AzNetworkInterfaceIpConfig","1","8100","Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand","New-AzNetworkInterfaceIpConfig","1","8100","New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand","Remove-AzNetworkInterfaceIpConfig","1","8100","Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand","Set-AzNetworkInterfaceIpConfig","1","8100","Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand","Get-AzNetworkWatcher","1","8510","Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand","Start-AzNetworkWatcherResourceTroubleshooting","1","8100","Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand","New-AzPacketCaptureFilterConfig","1","8100","New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand","New-AzPacketCaptureScopeConfig","1","8100","New-AzPacketCaptureScopeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand","Remove-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand","Stop-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8600","Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8510","Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmRouteTable","Get-AzRouteTable","1","8510","Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable","Remove-AzRouteTable","1","8600","Cmdlet 'Remove-AzRouteTable' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8100","New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand","Get-AzRouteFilter","1","8510","Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand","Remove-AzRouteFilter","1","8600","Cmdlet 'Remove-AzRouteFilter' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet","Test-AzPrivateIPAddressAvailability","1","8510","Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand","Remove-AzPublicIpAddress","1","8600","Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand","Set-AzPublicIpAddress","1","8100","Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand","Add-AzVpnClientRootCertificate","1","8100","Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand","Add-AzVpnClientRevokedCertificate","1","8100","Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand","New-AzVpnClientRootCertificate","1","8100","New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand","New-AzVpnClientRevokedCertificate","1","8100","New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand","Resize-AzVirtualNetworkGateway","1","8100","Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8100","Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8100","Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8100","New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand","Add-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand","Remove-AzVirtualNetworkGateway","1","8600","Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand","Reset-AzVirtualNetworkGateway","1","8100","Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand","Set-AzVirtualNetworkGatewayDefaultSite","1","8100","Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand","Remove-AzVirtualNetworkGatewayDefaultSite","1","8100","Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand","Remove-AzLocalNetworkGateway","1","8600","Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand","Set-AzLocalNetworkGateway","1","8100","Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand","Remove-AzVirtualNetworkGatewayConnection","1","8600","Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand","Add-AzLoadBalancerBackendAddressPoolConfig","1","8100","Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand","New-AzLoadBalancerBackendAddressPoolConfig","1","8100","New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand","Remove-AzLoadBalancerBackendAddressPoolConfig","1","8100","Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8100","Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8100","Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8100","New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand","Remove-AzLoadBalancerFrontendIpConfig","1","8100","Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand","Get-AzLoadBalancer","1","8510","Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8100","Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8100","Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8100","New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand","Remove-AzLoadBalancerInboundNatRuleConfig","1","8100","Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8100","Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8100","Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8100","New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand","Remove-AzLoadBalancerRuleConfig","1","8100","Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand","Set-AzLoadBalancerProbeConfig","1","8100","Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand","Add-AzLoadBalancerProbeConfig","1","8100","Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand","New-AzLoadBalancerProbeConfig","1","8100","New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand","Remove-AzLoadBalancerProbeConfig","1","8100","Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand","Remove-AzLoadBalancer","1","8600","Cmdlet 'Remove-AzLoadBalancer' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand","Set-AzLoadBalancer","1","8100","Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand","Remove-AzNetworkInterface","1","8600","Cmdlet 'Remove-AzNetworkInterface' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand","Set-AzNetworkInterface","1","8100","Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand","Get-AzNetworkSecurityGroup","1","8510","Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand","New-AzNetworkSecurityRuleConfig","1","8100","New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand","Get-AzNetworkSecurityRuleConfig","1","8410","Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand","Remove-AzNetworkSecurityRuleConfig","1","8100","Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand","Set-AzNetworkSecurityRuleConfig","1","8100","Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand","Add-AzNetworkSecurityRuleConfig","1","8100","Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand","New-AzNetworkSecurityGroup","1","8410","Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand","Remove-AzNetworkSecurityGroup","1","8600","Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand","Set-AzNetworkSecurityGroup","1","8100","Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8100","Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand","Remove-AzVirtualNetworkPeering","1","8600","Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand","Set-AzVirtualNetworkPeering","1","8100","Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand","Remove-AzVirtualNetwork","1","8600","Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand","Set-AzVirtualNetwork","1","8100","Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand","Remove-AzVirtualNetworkSubnetConfig","1","8100","Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzVirtualNetworkSubnetConfig","1","8100","Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzVirtualNetworkSubnetConfig","1","8100","Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzVirtualNetworkSubnetConfig","1","8100","New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzDelegation","1","8100","Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzDelegation","1","8100","Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzDelegation","1","8100","New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzVirtualNetwork","1","8510","Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzNetworkWatcherProtocolConfiguration","1","8100","New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzDdosProtectionPlan","1","8510","Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand","Get-AzExpressRouteCrossConnectionArpTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand","New-AzApplicationGatewayFirewallExclusionConfig","1","8100","New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand","Add-AzApplicationGatewayCustomError","1","8100","Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand","New-AzApplicationGatewayCustomError","1","8100","New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand","Remove-AzApplicationGatewayCustomError","1","8100","Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand","Set-AzApplicationGatewayCustomError","1","8100","Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand","Add-AzApplicationGatewayHttpListenerCustomError","1","8100","Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand","New-AzApplicationGatewayHttpListenerCustomError","1","8100","New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand","Remove-AzApplicationGatewayHttpListenerCustomError","1","8100","Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand","Set-AzApplicationGatewayHttpListenerCustomError","1","8100","Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand","New-AzVirtualHubRoute","1","8100","New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzVirtualHubRouteTable","1","8100","New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort","New-AzExpressRoutePort","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand","New-AzApplicationGatewayRewriteRuleActionSet","1","8100","New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand","New-AzApplicationGatewayRewriteRuleHeaderConfiguration","1","8100","New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand","New-AzApplicationGatewayRewriteRuleCondition","1","8100","New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand","Add-AzApplicationGatewayRewriteRuleSet","1","8100","Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand","New-AzApplicationGatewayRewriteRuleSet","1","8100","New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand","Remove-AzApplicationGatewayRewriteRuleSet","1","8100","Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand","Set-AzApplicationGatewayRewriteRuleSet","1","8100","Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand","New-AzApplicationGatewayRewriteRule","1","8100","New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile","1","8100","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic","1","8100","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand","New-AzApplicationGatewayFirewallCondition","1","8100","New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand","New-AzApplicationGatewayFirewallCustomRule","1","8100","New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand","New-AzApplicationGatewayFirewallMatchVariable","1","8100","New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand","New-AzPrivateLinkServiceConnection","1","8100","New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection","Set-AzPrivateEndpointConnection","1","8100","Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration","New-AzPrivateLinkServiceIpConfig","1","8100","New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand","Set-AzPrivateEndpoint","1","8100","Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection","Approve-AzPrivateEndpointConnection","1","8100","Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection","Deny-AzPrivateEndpointConnection","1","8100","Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand","Set-AzPrivateLinkService","1","8100","Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand","New-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8100","New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8100","New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand","Update-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand","New-AzExpressRoutePortIdentity","1","8100","New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand","Remove-AzExpressRoutePortIdentity","1","8100","Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand","Set-AzExpressRoutePortIdentity","1","8100","Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand","New-AzFirewallPolicyApplicationRule","1","8100","New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand","New-AzFirewallPolicyFilterRuleCollection","1","8100","New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8100","New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand","Add-AzVirtualHubRoute","1","8100","Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand","New-AzFirewallThreatIntelWhitelist","1","8100","New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress","New-AzFirewallHubPublicIpAddress","1","8100","New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress","New-AzFirewallHubIpAddress","1","8100","New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress","New-AzFirewallPublicIpAddress","1","8100","New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand","New-AzApplicationGatewayFirewallPolicyExclusion","1","8100","New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand","New-AzApplicationGatewayFirewallPolicyManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8100","New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8510","Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand","Get-AzIpAllocation","1","8510","Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand","Remove-AzIpAllocation","1","8510","Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8100","Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8510","Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand","New-AzLocalNetworkGateway","1","8510","Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand","New-AzNetworkWatcherConnectionMonitorEndpointObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand","New-AzNetworkWatcherConnectionMonitorObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand","New-AzNetworkWatcherConnectionMonitorTestConfigurationObject","1","8410","Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8100","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand","New-AzRadiusServer","1","8100","New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand","Add-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand","New-AzApplicationGatewayPrivateLinkConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand","New-AzApplicationGatewayPrivateLinkIpConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand","Remove-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand","Set-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand","New-AzFirewallPolicyThreatIntelWhitelist","1","8100","New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8100","New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand","New-AzRoutingConfiguration","1","8100","New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand","New-AzStaticRoute","1","8100","New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8510","Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA","New-AzExpressRoutePortLOA","1","8100","New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand","New-AzO365PolicyProperty","1","8100","New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand","New-AzApplicationGatewayClientAuthConfiguration","1","8100","New-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand","Remove-AzApplicationGatewayClientAuthConfiguration","1","8100","Remove-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayClientAuthConfigurationCommand","Set-AzApplicationGatewayClientAuthConfiguration","1","8100","Set-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter TrustedClientCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslProfiles of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand","Add-AzApplicationGatewaySslProfile","1","8100","Add-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand","Add-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet Add-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand","New-AzApplicationGatewaySslProfile","1","8100","New-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand","New-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet New-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand","Remove-AzApplicationGatewaySslProfile","1","8100","Remove-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand","Set-AzApplicationGatewaySslProfile","1","8100","Set-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand","Set-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet Set-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand","Set-AzApplicationGatewaySslProfilePolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslProfilePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand","Remove-AzApplicationGatewaySslProfilePolicy","1","8100","Remove-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand","Set-AzApplicationGatewaySslProfilePolicy","1","8100","Set-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayTrustedClientCertificateCommand","Add-AzApplicationGatewayTrustedClientCertificate","1","8100","Add-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand","New-AzApplicationGatewayTrustedClientCertificate","1","8100","New-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand","Remove-AzApplicationGatewayTrustedClientCertificate","1","8100","Remove-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand","Set-AzApplicationGatewayTrustedClientCertificate","1","8100","Set-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand","New-AzPrivateEndpointIpConfiguration","1","8100","New-AzPrivateEndpointIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand","Add-AzApplicationGatewayListener","1","8100","Add-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand","New-AzApplicationGatewayListener","1","8100","New-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand","Remove-AzApplicationGatewayListener","1","8100","Remove-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand","Set-AzApplicationGatewayListener","1","8100","Set-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand","Add-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand","New-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand","Set-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Listeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand","Add-AzApplicationGatewayRoutingRule","1","8100","Add-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand","Add-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet Add-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand","New-AzApplicationGatewayRoutingRule","1","8100","New-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand","New-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet New-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand","Remove-AzApplicationGatewayRoutingRule","1","8100","Remove-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand","Set-AzApplicationGatewayRoutingRule","1","8100","Set-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand","Set-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet Set-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand","Add-AzApplicationGatewayBackendSetting","1","8100","Add-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand","Add-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand","New-AzApplicationGatewayBackendSetting","1","8100","New-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand","New-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand","Remove-AzApplicationGatewayBackendSetting","1","8100","Remove-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand","Set-AzApplicationGatewayBackendSetting","1","8100","Set-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand","Set-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand","New-AzNetworkManagerAddressPrefixItem","1","8100","New-AzNetworkManagerAddressPrefixItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand","New-AzNetworkManagerConnectivityGroupItem","1","8100","New-AzNetworkManagerConnectivityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerGroupMembersItemCommand","New-AzNetworkManagerGroupMembersItem","1","8100","New-AzNetworkManagerGroupMembersItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand","New-AzNetworkManagerHub","1","8100","New-AzNetworkManagerHub Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand","New-AzNetworkManagerScope","1","8100","New-AzNetworkManagerScope Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand","New-AzNetworkManagerSecurityGroupItem","1","8100","New-AzNetworkManagerSecurityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand","New-AzVirtualNetworkGatewayPolicyGroup","1","8100","New-AzVirtualNetworkGatewayPolicyGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand","New-AzVirtualNetworkGatewayPolicyGroupMember","1","8100","New-AzVirtualNetworkGatewayPolicyGroupMember Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand","New-AzVpnClientConnectionConfiguration","1","8100","New-AzVpnClientConnectionConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand","New-AzFirewallPolicySnat","1","8100","New-AzFirewallPolicySnat Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand","New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration","1","8100","New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand","New-AzApplicationGatewayFirewallPolicyLogScrubbingRule","1","8100","New-AzApplicationGatewayFirewallPolicyLogScrubbingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand","New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession","1","8100","New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand","New-AzApplicationGatewayFirewallCustomRuleGroupByVariable","1","8100","New-AzApplicationGatewayFirewallCustomRuleGroupByVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand","New-AzVirtualRouterAutoScaleConfiguration","1","8100","New-AzVirtualRouterAutoScaleConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." -"Az.Network","Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand","New-AzBastion","1","8410","Parameter EnableKerberos of cmdlet New-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand","Set-AzBastion","1","8410","Parameter EnableKerberos of cmdlet Set-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8410","Parameter JSChallengeCookieExpirationInMins of cmdlet New-AzApplicationGatewayFirewallPolicySetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand","New-AzApplicationGatewayHeaderValueMatcher","1","8100","New-AzApplicationGatewayHeaderValueMatcher Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingGroupItemCommand","New-AzNetworkManagerRoutingGroupItem","1","8100","New-AzNetworkManagerRoutingGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleDestinationCommand","New-AzNetworkManagerRoutingRuleDestination","1","8100","New-AzNetworkManagerRoutingRuleDestination Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleNextHopCommand","New-AzNetworkManagerRoutingRuleNextHop","1","8100","New-AzNetworkManagerRoutingRuleNextHop Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserGroupItemCommand","New-AzNetworkManagerSecurityUserGroupItem","1","8100","New-AzNetworkManagerSecurityUserGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter PeerCompleteVnets of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter LocalSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter RemoteSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Az.Network","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.RemoveExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"Az.Network","Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayMigrationParameters","New-AzVirtualNetworkGatewayMigrationParameter","1","8100","New-AzVirtualNetworkGatewayMigrationParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +Module,ClassName,Target,Severity,ProblemId,Description,Remediation +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand,New-AzPacketCaptureScopeConfig,1,8100,New-AzPacketCaptureScopeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand,New-AzApplicationGatewayClientAuthConfiguration,1,8100,New-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand,Remove-AzApplicationGatewayClientAuthConfiguration,1,8100,Remove-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayClientAuthConfigurationCommand,Set-AzApplicationGatewayClientAuthConfiguration,1,8100,Set-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter TrustedClientCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslProfiles of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand,Add-AzApplicationGatewaySslProfile,1,8100,Add-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand,Add-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet Add-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand,New-AzApplicationGatewaySslProfile,1,8100,New-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand,New-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet New-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand,Remove-AzApplicationGatewaySslProfile,1,8100,Remove-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand,Set-AzApplicationGatewaySslProfile,1,8100,Set-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand,Set-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet Set-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand,Set-AzApplicationGatewaySslProfilePolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslProfilePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand,Remove-AzApplicationGatewaySslProfilePolicy,1,8100,Remove-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand,Set-AzApplicationGatewaySslProfilePolicy,1,8100,Set-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayTrustedClientCertificateCommand,Add-AzApplicationGatewayTrustedClientCertificate,1,8100,Add-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand,New-AzApplicationGatewayTrustedClientCertificate,1,8100,New-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand,Remove-AzApplicationGatewayTrustedClientCertificate,1,8100,Remove-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand,Set-AzApplicationGatewayTrustedClientCertificate,1,8100,Set-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand,New-AzPrivateEndpointIpConfiguration,1,8100,New-AzPrivateEndpointIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand,Add-AzApplicationGatewayListener,1,8100,Add-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand,New-AzApplicationGatewayListener,1,8100,New-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand,Remove-AzApplicationGatewayListener,1,8100,Remove-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand,Set-AzApplicationGatewayListener,1,8100,Set-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand,Add-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand,New-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand,Set-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Listeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand,Add-AzApplicationGatewayRoutingRule,1,8100,Add-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand,Add-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet Add-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand,New-AzApplicationGatewayRoutingRule,1,8100,New-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand,New-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet New-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand,Remove-AzApplicationGatewayRoutingRule,1,8100,Remove-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand,Set-AzApplicationGatewayRoutingRule,1,8100,Set-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand,Set-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet Set-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand,Add-AzApplicationGatewayBackendSetting,1,8100,Add-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand,Add-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand,New-AzApplicationGatewayBackendSetting,1,8100,New-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand,New-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand,Remove-AzApplicationGatewayBackendSetting,1,8100,Remove-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand,Set-AzApplicationGatewayBackendSetting,1,8100,Set-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand,Set-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand,New-AzNetworkManagerAddressPrefixItem,1,8100,New-AzNetworkManagerAddressPrefixItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand,New-AzNetworkManagerConnectivityGroupItem,1,8100,New-AzNetworkManagerConnectivityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerGroupMembersItemCommand,New-AzNetworkManagerGroupMembersItem,1,8100,New-AzNetworkManagerGroupMembersItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand,New-AzNetworkManagerHub,1,8100,New-AzNetworkManagerHub Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand,New-AzNetworkManagerScope,1,8100,New-AzNetworkManagerScope Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand,New-AzNetworkManagerSecurityGroupItem,1,8100,New-AzNetworkManagerSecurityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand,New-AzVirtualNetworkGatewayPolicyGroup,1,8100,New-AzVirtualNetworkGatewayPolicyGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand,New-AzVirtualNetworkGatewayPolicyGroupMember,1,8100,New-AzVirtualNetworkGatewayPolicyGroupMember Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand,New-AzVpnClientConnectionConfiguration,1,8100,New-AzVpnClientConnectionConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand,New-AzFirewallPolicySnat,1,8100,New-AzFirewallPolicySnat Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand,New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration,1,8100,New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand,New-AzApplicationGatewayFirewallPolicyLogScrubbingRule,1,8100,New-AzApplicationGatewayFirewallPolicyLogScrubbingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand,New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession,1,8100,New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand,New-AzApplicationGatewayFirewallCustomRuleGroupByVariable,1,8100,New-AzApplicationGatewayFirewallCustomRuleGroupByVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand,New-AzVirtualRouterAutoScaleConfiguration,1,8100,New-AzVirtualRouterAutoScaleConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. +Az.Network,Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand,New-AzBastion,1,8410,Parameter EnableKerberos of cmdlet New-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand,Set-AzBastion,1,8410,Parameter EnableKerberos of cmdlet Set-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8410,Parameter JSChallengeCookieExpirationInMins of cmdlet New-AzApplicationGatewayFirewallPolicySetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand,New-AzApplicationGatewayHeaderValueMatcher,1,8100,New-AzApplicationGatewayHeaderValueMatcher Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingGroupItemCommand,New-AzNetworkManagerRoutingGroupItem,1,8100,New-AzNetworkManagerRoutingGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleDestinationCommand,New-AzNetworkManagerRoutingRuleDestination,1,8100,New-AzNetworkManagerRoutingRuleDestination Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleNextHopCommand,New-AzNetworkManagerRoutingRuleNextHop,1,8100,New-AzNetworkManagerRoutingRuleNextHop Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserGroupItemCommand,New-AzNetworkManagerSecurityUserGroupItem,1,8100,New-AzNetworkManagerSecurityUserGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter PeerCompleteVnets of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter LocalSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter RemoteSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.RemoveExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayMigrationParameters,New-AzVirtualNetworkGatewayMigrationParameter,1,8100,New-AzVirtualNetworkGatewayMigrationParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +Az.Network,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommandV2,New-AzNetworkWatcherPacketCaptureV2,1,8410,Parameter CaptureSettings of cmdlet New-AzNetworkWatcherPacketCaptureV2 does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. +Az.Network,Microsoft.Azure.Commands.Network.NetworkWatcher.PacketCapture.NewPacketCaptureSettingsCommand,New-AzPacketCaptureSettingsConfig,1,8100,New-AzPacketCaptureSettingsConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue From 2d2eccce7cf4e16d136ef985a5c150d40a84b214 Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Fri, 6 Jun 2025 12:15:55 +0530 Subject: [PATCH 5/6] reverted to the old file format and added our records for supress --- .../Exceptions/Az.Network/SignatureIssues.csv | 926 +++++++++--------- 1 file changed, 463 insertions(+), 463 deletions(-) diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index c4db0e0efcbc..c69e336b6058 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -1,463 +1,463 @@ -Module,ClassName,Target,Severity,ProblemId,Description,Remediation -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand,New-AzVpnClientIpsecPolicy,1,8100,New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand,New-AzVpnClientIpsecParameter,1,8100,New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand,Add-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand,New-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand,Set-AzApplicationGatewayBackendAddressPool,1,8410,Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8100,Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand,Add-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8100,New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand,New-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand,Remove-AzApplicationGatewayBackendHttpSetting,1,8100,Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8100,Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand,Set-AzApplicationGatewayBackendHttpSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand,Get-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand,New-AzApplicationGatewayConnectionDraining,1,8100,New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8100,Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand,Remove-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8100,Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand,Set-AzApplicationGatewayConnectionDraining,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,New-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand,Set-AzApplicationGatewayWebApplicationFirewallConfiguration,1,8410,Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand,New-AzApplicationGatewayProbeHealthResponseMatch,1,8100,New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8100,Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand,Add-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8100,New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand,New-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand,Remove-AzApplicationGatewayFrontendIPConfig,1,8100,Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8100,Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand,Set-AzApplicationGatewayFrontendIPConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand,Add-AzApplicationGatewayFrontendPort,1,8100,Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand,New-AzApplicationGatewayFrontendPort,1,8100,New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand,Remove-AzApplicationGatewayFrontendPort,1,8100,Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand,Set-AzApplicationGatewayFrontendPort,1,8100,Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8100,Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand,Add-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8100,New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand,New-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand,Remove-AzApplicationGatewayIPConfiguration,1,8100,Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8100,Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand,Set-AzApplicationGatewayIPConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8100,Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8100,New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand,Remove-AzApplicationGatewayHttpListener,1,8100,Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8100,Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8510,"Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8100,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand,New-AzApplicationGatewayFirewallDisabledRuleGroupConfig,1,8410,Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8100,New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand,New-AzApplicationGatewayPathRuleConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8100,Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand,Add-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8100,New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand,New-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand,Remove-AzApplicationGatewayProbeConfig,1,8100,Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8100,Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand,Set-AzApplicationGatewayProbeConfig,1,8410,Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand,Remove-AzApplicationGateway,1,8600,Cmdlet 'Remove-AzApplicationGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8100,Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand,Add-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8100,New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand,New-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand,Remove-AzApplicationGatewayRedirectConfiguration,1,8100,Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8100,Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand,Set-AzApplicationGatewayRedirectConfiguration,1,8510,"Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8100,Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand,Add-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8100,New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand,New-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand,Remove-AzApplicationGatewayRequestRoutingRule,1,8100,Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8100,Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8410,Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand,Set-AzApplicationGatewayRequestRoutingRule,1,8510,"Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand,Set-AzApplicationGateway,1,8100,Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand,New-AzApplicationGatewaySku,1,8100,New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand,Set-AzApplicationGatewaySku,1,8100,Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand,Add-AzApplicationGatewaySslCertificate,1,8100,Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand,New-AzApplicationGatewaySslCertificate,1,8100,New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand,Remove-AzApplicationGatewaySslCertificate,1,8100,Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand,Set-AzApplicationGatewaySslCertificate,1,8100,Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand,New-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand,Set-AzApplicationGatewaySslPolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand,Start-AzApplicationGateway,1,8100,Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand,Stop-AzApplicationGateway,1,8100,Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8100,Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand,Add-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8100,New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand,New-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand,Remove-AzApplicationGatewayUrlPathMapConfig,1,8100,Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8100,Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8410,Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand,Set-AzApplicationGatewayUrlPathMapConfig,1,8510,"Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup,Remove-AzApplicationSecurityGroup,1,8600,Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan,Remove-AzDdosProtectionPlan,1,8600,Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand,Add-AzExpressRouteCircuitAuthorization,1,8100,Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand,New-AzExpressRouteCircuitAuthorization,1,8100,New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand,Remove-AzExpressRouteCircuitAuthorization,1,8100,Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8100,Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand,Add-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8100,New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand,New-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand,Remove-AzLoadBalancerInboundNatPoolConfig,1,8100,Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8100,Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand,Set-AzLoadBalancerInboundNatPoolConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8100,Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand,Add-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8100,New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand,New-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand,Remove-AzExpressRouteCircuitPeeringConfig,1,8100,Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8100,Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand,Set-AzExpressRouteCircuitPeeringConfig,1,8410,Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand,Remove-AzExpressRouteCircuit,1,8600,Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand,Set-AzExpressRouteCircuit,1,8100,Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand,Add-AzNetworkInterfaceIpConfig,1,8100,Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand,New-AzNetworkInterfaceIpConfig,1,8100,New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand,Remove-AzNetworkInterfaceIpConfig,1,8100,Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand,Set-AzNetworkInterfaceIpConfig,1,8100,Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand,Get-AzNetworkWatcher,1,8510,"Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand,Start-AzNetworkWatcherResourceTroubleshooting,1,8100,Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand,New-AzPacketCaptureFilterConfig,1,8100,New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand,New-AzPacketCaptureScopeConfig,1,8100,New-AzPacketCaptureScopeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand,Remove-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand,Stop-AzNetworkWatcherPacketCapture,1,8600,Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8600,Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand,Remove-AzNetworkWatcher,1,8510,"Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmRouteTable,Get-AzRouteTable,1,8510,"Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable,Remove-AzRouteTable,1,8600,Cmdlet 'Remove-AzRouteTable' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8100,New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand,New-AzIpsecPolicy,1,8410,Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand,Get-AzRouteFilter,1,8510,"Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand,Remove-AzRouteFilter,1,8600,Cmdlet 'Remove-AzRouteFilter' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet,Test-AzPrivateIPAddressAvailability,1,8510,"Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand,Remove-AzPublicIpAddress,1,8600,Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand,Set-AzPublicIpAddress,1,8100,Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand,Add-AzVpnClientRootCertificate,1,8100,Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand,Add-AzVpnClientRevokedCertificate,1,8100,Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand,New-AzVpnClientRootCertificate,1,8100,New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand,New-AzVpnClientRevokedCertificate,1,8100,New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand,Resize-AzVirtualNetworkGateway,1,8100,Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8100,Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand,Remove-AzVpnClientRevokedCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8100,Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand,Remove-AzVpnClientRootCertificate,1,8600,Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8100,New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand,New-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand,Add-AzVirtualNetworkGatewayIpConfig,1,8510,"Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand,Remove-AzVirtualNetworkGateway,1,8600,Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand,Reset-AzVirtualNetworkGateway,1,8100,Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand,Set-AzVirtualNetworkGatewayDefaultSite,1,8100,Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand,Remove-AzVirtualNetworkGatewayDefaultSite,1,8100,Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand,Remove-AzLocalNetworkGateway,1,8600,Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand,Set-AzLocalNetworkGateway,1,8100,Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand,Remove-AzVirtualNetworkGatewayConnection,1,8600,Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand,Set-AzVirtualNetworkGatewayConnection,1,8410,Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand,Add-AzLoadBalancerBackendAddressPoolConfig,1,8100,Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand,New-AzLoadBalancerBackendAddressPoolConfig,1,8100,New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand,Remove-AzLoadBalancerBackendAddressPoolConfig,1,8100,Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8100,Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand,Set-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8100,Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand,Add-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8100,New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand,New-AzLoadBalancerFrontendIpConfig,1,8510,"Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand,Remove-AzLoadBalancerFrontendIpConfig,1,8100,Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand,Get-AzLoadBalancer,1,8510,"Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8100,Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand,Set-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8100,Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand,Add-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8100,New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand,New-AzLoadBalancerInboundNatRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand,Remove-AzLoadBalancerInboundNatRuleConfig,1,8100,Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8100,Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand,Set-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8100,Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand,Add-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8100,New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand,New-AzLoadBalancerRuleConfig,1,8510,"Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand,Remove-AzLoadBalancerRuleConfig,1,8100,Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand,Set-AzLoadBalancerProbeConfig,1,8100,Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand,Add-AzLoadBalancerProbeConfig,1,8100,Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand,New-AzLoadBalancerProbeConfig,1,8100,New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand,Remove-AzLoadBalancerProbeConfig,1,8100,Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand,Remove-AzLoadBalancer,1,8600,Cmdlet 'Remove-AzLoadBalancer' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand,Set-AzLoadBalancer,1,8100,Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand,Remove-AzNetworkInterface,1,8600,Cmdlet 'Remove-AzNetworkInterface' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand,Set-AzNetworkInterface,1,8100,Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand,Get-AzNetworkSecurityGroup,1,8510,"Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand,New-AzNetworkSecurityRuleConfig,1,8100,New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand,Get-AzNetworkSecurityRuleConfig,1,8410,Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand,Remove-AzNetworkSecurityRuleConfig,1,8100,Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand,Set-AzNetworkSecurityRuleConfig,1,8100,Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand,Add-AzNetworkSecurityRuleConfig,1,8100,Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand,New-AzNetworkSecurityGroup,1,8410,Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand,Remove-AzNetworkSecurityGroup,1,8600,Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand,Set-AzNetworkSecurityGroup,1,8100,Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8100,Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand,Remove-AzVirtualNetworkPeering,1,8600,Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand,Set-AzVirtualNetworkPeering,1,8100,Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand,Remove-AzVirtualNetwork,1,8600,Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.,"Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand,Set-AzVirtualNetwork,1,8100,Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand,Remove-AzVirtualNetworkSubnetConfig,1,8100,Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand,Set-AzVirtualNetworkSubnetConfig,1,8100,Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand,Add-AzVirtualNetworkSubnetConfig,1,8100,Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand,New-AzVirtualNetworkSubnetConfig,1,8100,New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation,Add-AzDelegation,1,8100,Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation,Remove-AzDelegation,1,8100,Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand,New-AzDelegation,1,8100,New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand,Get-AzVirtualNetwork,1,8510,"Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration,New-AzNetworkWatcherProtocolConfiguration,1,8100,New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan,Get-AzDdosProtectionPlan,1,8510,"Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand,Set-AzNetworkWatcherConfigFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection,Get-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8410,Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand,Set-AzExpressRouteCrossConnection,1,8510,"Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand,Get-AzExpressRouteCrossConnectionArpTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand,Get-AzExpressRouteCrossConnectionRouteTable,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand,Get-AzExpressRouteCrossConnectionRouteTableSummary,1,8510,"Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand,New-AzApplicationGatewayFirewallExclusionConfig,1,8100,New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand,Add-AzApplicationGatewayCustomError,1,8100,Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand,New-AzApplicationGatewayCustomError,1,8100,New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand,Remove-AzApplicationGatewayCustomError,1,8100,Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand,Set-AzApplicationGatewayCustomError,1,8100,Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand,Add-AzApplicationGatewayHttpListenerCustomError,1,8100,Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand,New-AzApplicationGatewayHttpListenerCustomError,1,8100,New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand,Remove-AzApplicationGatewayHttpListenerCustomError,1,8100,Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand,Set-AzApplicationGatewayHttpListenerCustomError,1,8100,Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand,New-AzVirtualHubRoute,1,8100,New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand,New-AzVirtualHubRouteTable,1,8100,New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand,New-AzExpressRouteCircuit,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort,New-AzExpressRoutePort,1,8410,Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand,New-AzVirtualNetworkGatewayConnection,1,8410,Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand,New-AzApplicationGatewayRewriteRuleActionSet,1,8100,New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand,New-AzApplicationGatewayRewriteRuleHeaderConfiguration,1,8100,New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand,New-AzApplicationGatewayRewriteRuleCondition,1,8100,New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand,Add-AzApplicationGatewayRewriteRuleSet,1,8100,Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand,New-AzApplicationGatewayRewriteRuleSet,1,8100,New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand,Remove-AzApplicationGatewayRewriteRuleSet,1,8100,Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand,Set-AzApplicationGatewayRewriteRuleSet,1,8100,Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand,New-AzApplicationGatewayRewriteRule,1,8100,New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand,New-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand,Set-AzExpressRouteGateway,1,8410,Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile,1,8100,New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic,1,8100,Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand,New-AzApplicationGatewayFirewallCondition,1,8100,New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand,New-AzApplicationGatewayFirewallCustomRule,1,8100,New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand,New-AzApplicationGatewayFirewallMatchVariable,1,8100,New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand,New-AzPrivateLinkServiceConnection,1,8100,New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection,Set-AzPrivateEndpointConnection,1,8100,Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration,New-AzPrivateLinkServiceIpConfig,1,8100,New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand,Set-AzPrivateEndpoint,1,8100,Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection,Approve-AzPrivateEndpointConnection,1,8100,Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection,Deny-AzPrivateEndpointConnection,1,8100,Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand,Set-AzPrivateLinkService,1,8100,Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand,New-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8100,New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand,New-AzVpnSiteLinkConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8100,New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand,Update-AzVpnConnection,1,8410,Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand,New-AzExpressRoutePortIdentity,1,8100,New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand,Remove-AzExpressRoutePortIdentity,1,8100,Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand,Set-AzExpressRoutePortIdentity,1,8100,Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand,New-AzFirewallPolicyApplicationRule,1,8100,New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand,New-AzFirewallPolicyFilterRuleCollection,1,8100,New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8100,New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand,Add-AzVirtualHubRoute,1,8100,Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand,New-AzFirewallThreatIntelWhitelist,1,8100,New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress,New-AzFirewallHubPublicIpAddress,1,8100,New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress,New-AzFirewallHubIpAddress,1,8100,New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress,New-AzFirewallPublicIpAddress,1,8100,New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand,New-AzApplicationGatewayFirewallPolicyExclusion,1,8100,New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand,New-AzApplicationGatewayFirewallPolicyManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8100,New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand,Add-AzVirtualHubRouteTable,1,8100,Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand,Add-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand,New-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand,Set-AzApplicationGatewayHttpListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand,New-AzVpnSiteLink,1,8510,"Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand,Get-AzIpAllocation,1,8510,"Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand,Remove-AzIpAllocation,1,8510,"Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8100,Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand,Set-AzIpAllocation,1,8510,"Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand,New-AzLocalNetworkGateway,1,8510,"Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand,New-AzNetworkWatcherConnectionMonitorEndpointObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand,New-AzNetworkWatcherConnectionMonitorObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand,New-AzNetworkWatcherConnectionMonitorTestConfigurationObject,1,8410,Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand,New-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand,Set-AzNetworkWatcherFlowLog,1,8410,Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand,New-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand,Set-AzVirtualNetworkGateway,1,8410,Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8100,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject,New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject,1,8510,"Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand,New-AzRadiusServer,1,8100,New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand,New-AzPrivateDnsZoneConfig,1,8100,New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand,Add-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand,New-AzApplicationGatewayPrivateLinkConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand,New-AzApplicationGatewayPrivateLinkIpConfiguration,1,8100,New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand,Remove-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand,Set-AzApplicationGatewayPrivateLinkConfiguration,1,8100,Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand,New-AzFirewallPolicyThreatIntelWhitelist,1,8100,New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand,New-AzFirewallPolicyNatRuleCollection,1,8100,New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8100,New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand,New-AzRoutingConfiguration,1,8100,New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand,New-AzStaticRoute,1,8100,New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand,New-AzVHubRoute,1,8100,New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand,New-AzFirewallPolicyNatRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand,New-AzFirewallPolicyNetworkRule,1,8510,"Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.",Define a default parameter set in the cmdlet attribute. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand,New-AzOffice365PolicyProperty,1,8100,New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand,New-AzVirtualApplianceSkuProperty,1,8100,New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand,Update-AzVpnServerConfiguration,1,8700,"Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA,New-AzExpressRoutePortLOA,1,8100,New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand,New-AzO365PolicyProperty,1,8100,New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand,New-AzApplicationGatewayClientAuthConfiguration,1,8100,New-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand,Remove-AzApplicationGatewayClientAuthConfiguration,1,8100,Remove-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayClientAuthConfigurationCommand,Set-AzApplicationGatewayClientAuthConfiguration,1,8100,Set-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter TrustedClientCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter SslProfiles of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand,Add-AzApplicationGatewaySslProfile,1,8100,Add-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand,Add-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet Add-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand,New-AzApplicationGatewaySslProfile,1,8100,New-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand,New-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet New-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand,Remove-AzApplicationGatewaySslProfile,1,8100,Remove-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand,Set-AzApplicationGatewaySslProfile,1,8100,Set-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand,Set-AzApplicationGatewaySslProfile,1,8410,Parameter TrustedClientCertificates of cmdlet Set-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand,Set-AzApplicationGatewaySslProfilePolicy,1,8410,Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslProfilePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand,Remove-AzApplicationGatewaySslProfilePolicy,1,8100,Remove-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand,Set-AzApplicationGatewaySslProfilePolicy,1,8100,Set-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayTrustedClientCertificateCommand,Add-AzApplicationGatewayTrustedClientCertificate,1,8100,Add-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand,New-AzApplicationGatewayTrustedClientCertificate,1,8100,New-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand,Remove-AzApplicationGatewayTrustedClientCertificate,1,8100,Remove-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand,Set-AzApplicationGatewayTrustedClientCertificate,1,8100,Set-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRule,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet,1,8100,New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand,New-AzPrivateEndpointIpConfiguration,1,8100,New-AzPrivateEndpointIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand,Add-AzApplicationGatewayListener,1,8100,Add-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand,New-AzApplicationGatewayListener,1,8100,New-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand,Remove-AzApplicationGatewayListener,1,8100,Remove-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand,Set-AzApplicationGatewayListener,1,8100,Set-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand,Add-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet Add-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand,New-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet New-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand,Set-AzApplicationGatewayListener,1,8410,Parameter HostNames of cmdlet Set-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter Listeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand,New-AzApplicationGateway,1,8410,Parameter RoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand,Add-AzApplicationGatewayRoutingRule,1,8100,Add-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand,Add-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet Add-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand,New-AzApplicationGatewayRoutingRule,1,8100,New-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand,New-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet New-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand,Remove-AzApplicationGatewayRoutingRule,1,8100,Remove-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand,Set-AzApplicationGatewayRoutingRule,1,8100,Set-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand,Set-AzApplicationGatewayRoutingRule,1,8410,Parameter BackendSettings of cmdlet Set-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand,Add-AzApplicationGatewayBackendSetting,1,8100,Add-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand,Add-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand,New-AzApplicationGatewayBackendSetting,1,8100,New-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand,New-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand,Remove-AzApplicationGatewayBackendSetting,1,8100,Remove-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand,Set-AzApplicationGatewayBackendSetting,1,8100,Set-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand,Set-AzApplicationGatewayBackendSetting,1,8410,Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand,New-AzNetworkManagerAddressPrefixItem,1,8100,New-AzNetworkManagerAddressPrefixItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand,New-AzNetworkManagerConnectivityGroupItem,1,8100,New-AzNetworkManagerConnectivityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerGroupMembersItemCommand,New-AzNetworkManagerGroupMembersItem,1,8100,New-AzNetworkManagerGroupMembersItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand,New-AzNetworkManagerHub,1,8100,New-AzNetworkManagerHub Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand,New-AzNetworkManagerScope,1,8100,New-AzNetworkManagerScope Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand,New-AzNetworkManagerSecurityGroupItem,1,8100,New-AzNetworkManagerSecurityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand,New-AzVirtualNetworkGatewayPolicyGroup,1,8100,New-AzVirtualNetworkGatewayPolicyGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand,New-AzVirtualNetworkGatewayPolicyGroupMember,1,8100,New-AzVirtualNetworkGatewayPolicyGroupMember Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Microsoft.Azure.PowerShell.Cmdlets.Network.dll,Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand,New-AzVpnClientConnectionConfiguration,1,8100,New-AzVpnClientConnectionConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand,New-AzFirewallPolicySnat,1,8100,New-AzFirewallPolicySnat Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand,New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration,1,8100,New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand,New-AzApplicationGatewayFirewallPolicyLogScrubbingRule,1,8100,New-AzApplicationGatewayFirewallPolicyLogScrubbingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand,New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession,1,8100,New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand,New-AzApplicationGatewayFirewallCustomRuleGroupByVariable,1,8100,New-AzApplicationGatewayFirewallCustomRuleGroupByVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand,New-AzVirtualRouterAutoScaleConfiguration,1,8100,New-AzVirtualRouterAutoScaleConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand,Get-AzBastion,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand,Get-AzExpressRouteGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand,Get-AzP2sVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand,Get-AzVirtualHub,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand,Get-AzVirtualWan,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand,Get-AzVpnGateway,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand,Get-AzVpnServerConfiguration,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand,Get-AzVpnSite,1,8700,"Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand,Update-AzP2sVpnGateway,1,8700,"Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.",Merge these parameter sets into one parameter set. -Az.Network,Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand,New-AzBastion,1,8410,Parameter EnableKerberos of cmdlet New-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand,Set-AzBastion,1,8410,Parameter EnableKerberos of cmdlet Set-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand,New-AzApplicationGatewayFirewallPolicySetting,1,8410,Parameter JSChallengeCookieExpirationInMins of cmdlet New-AzApplicationGatewayFirewallPolicySetting does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand,New-AzApplicationGatewayHeaderValueMatcher,1,8100,New-AzApplicationGatewayHeaderValueMatcher Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingGroupItemCommand,New-AzNetworkManagerRoutingGroupItem,1,8100,New-AzNetworkManagerRoutingGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleDestinationCommand,New-AzNetworkManagerRoutingRuleDestination,1,8100,New-AzNetworkManagerRoutingRuleDestination Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleNextHopCommand,New-AzNetworkManagerRoutingRuleNextHop,1,8100,New-AzNetworkManagerRoutingRuleNextHop Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserGroupItemCommand,New-AzNetworkManagerSecurityUserGroupItem,1,8100,New-AzNetworkManagerSecurityUserGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter PeerCompleteVnets of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter LocalSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand,Add-AzVirtualNetworkPeering,1,8410,Parameter RemoteSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.RemoveExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand,Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig,1,8100,Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayMigrationParameters,New-AzVirtualNetworkGatewayMigrationParameter,1,8100,New-AzVirtualNetworkGatewayMigrationParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue -Az.Network,Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommandV2,New-AzNetworkWatcherPacketCaptureV2,1,8410,Parameter CaptureSettings of cmdlet New-AzNetworkWatcherPacketCaptureV2 does not follow the enforced naming convention of using a singular noun for a parameter name.,Consider using a singular noun for the parameter name. -Az.Network,Microsoft.Azure.Commands.Network.NetworkWatcher.PacketCapture.NewPacketCaptureSettingsCommand,New-AzPacketCaptureSettingsConfig,1,8100,New-AzPacketCaptureSettingsConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.,Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue +"Module","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand","New-AzVpnClientIpsecPolicy","1","8100","New-AzVpnClientIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand","New-AzVpnClientIpsecParameter","1","8100","New-AzVpnClientIpsecParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue " +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendAddressPoolCommand","Add-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Add-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand","New-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet New-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendIPAddresses of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendAddressPoolCommand","Set-AzApplicationGatewayBackendAddressPool","1","8410","Parameter BackendFqdns of cmdlet Set-AzApplicationGatewayBackendAddressPool does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8100","Add-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendHttpSettingsCommand","Add-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8100","New-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand","New-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand","Remove-AzApplicationGatewayBackendHttpSetting","1","8100","Remove-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8100","Set-AzApplicationGatewayBackendHttpSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendHttpSettingsCommand","Set-AzApplicationGatewayBackendHttpSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendHttpSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureApplicationGatewayConnectionDrainingCommand","Get-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Get-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand","New-AzApplicationGatewayConnectionDraining","1","8100","New-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8100","Remove-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand","Remove-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Remove-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8100","Set-AzApplicationGatewayConnectionDraining Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayConnectionDrainingCommand","Set-AzApplicationGatewayConnectionDraining","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayConnectionDraining does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","New-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet New-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand","Set-AzApplicationGatewayWebApplicationFirewallConfiguration","1","8410","Parameter DisabledRuleGroups of cmdlet Set-AzApplicationGatewayWebApplicationFirewallConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand","New-AzApplicationGatewayProbeHealthResponseMatch","1","8100","New-AzApplicationGatewayProbeHealthResponseMatch Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8100","Add-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendIPConfigCommand","Add-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8100","New-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand","New-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'New-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand","Remove-AzApplicationGatewayFrontendIPConfig","1","8100","Remove-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8100","Set-AzApplicationGatewayFrontendIPConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendIPConfigCommand","Set-AzApplicationGatewayFrontendIPConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayFrontendIPConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayFrontendPortCommand","Add-AzApplicationGatewayFrontendPort","1","8100","Add-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand","New-AzApplicationGatewayFrontendPort","1","8100","New-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand","Remove-AzApplicationGatewayFrontendPort","1","8100","Remove-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayFrontendPortCommand","Set-AzApplicationGatewayFrontendPort","1","8100","Set-AzApplicationGatewayFrontendPort Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8100","Add-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayIPConfigurationCommand","Add-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8100","New-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand","New-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand","Remove-AzApplicationGatewayIPConfiguration","1","8100","Remove-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8100","Set-AzApplicationGatewayIPConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayIPConfigurationCommand","Set-AzApplicationGatewayIPConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayIPConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8100","Add-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Add-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8100","New-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'New-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand","Remove-AzApplicationGatewayHttpListener","1","8100","Remove-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8100","Set-AzApplicationGatewayHttpListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8510","Cmdlet 'Set-AzApplicationGatewayHttpListener' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter GatewayIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendIPConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter FrontendPorts of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Probes of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter BackendAddressPools of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter HttpListeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter UrlPathMaps of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RequestRoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RedirectConfigurations of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8100","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand","New-AzApplicationGatewayFirewallDisabledRuleGroupConfig","1","8410","Parameter Rules of cmdlet New-AzApplicationGatewayFirewallDisabledRuleGroupConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8100","New-AzApplicationGatewayPathRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter Paths of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayPathRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand","New-AzApplicationGatewayPathRuleConfig","1","8510","Cmdlet 'New-AzApplicationGatewayPathRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8100","Add-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayProbeConfigCommand","Add-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Add-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8100","New-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand","New-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet New-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand","Remove-AzApplicationGatewayProbeConfig","1","8100","Remove-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8100","Set-AzApplicationGatewayProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter PickHostNameFromBackendHttpSettings of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand","Set-AzApplicationGatewayProbeConfig","1","8410","Parameter MinServers of cmdlet Set-AzApplicationGatewayProbeConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand","Remove-AzApplicationGateway","1","8600","Cmdlet 'Remove-AzApplicationGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8100","Add-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRedirectConfigurationCommand","Add-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Add-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8100","New-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand","New-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'New-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand","Remove-AzApplicationGatewayRedirectConfiguration","1","8100","Remove-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8100","Set-AzApplicationGatewayRedirectConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand","Set-AzApplicationGatewayRedirectConfiguration","1","8510","Cmdlet 'Set-AzApplicationGatewayRedirectConfiguration' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8100","Add-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Add-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRequestRoutingRuleCommand","Add-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Add-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8100","New-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet New-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand","New-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'New-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand","Remove-AzApplicationGatewayRequestRoutingRule","1","8100","Remove-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8100","Set-AzApplicationGatewayRequestRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8410","Parameter BackendHttpSettings of cmdlet Set-AzApplicationGatewayRequestRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand","Set-AzApplicationGatewayRequestRoutingRule","1","8510","Cmdlet 'Set-AzApplicationGatewayRequestRoutingRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCommand","Set-AzApplicationGateway","1","8100","Set-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand","New-AzApplicationGatewaySku","1","8100","New-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand","Set-AzApplicationGatewaySku","1","8100","Set-AzApplicationGatewaySku Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslCertificateCommand","Add-AzApplicationGatewaySslCertificate","1","8100","Add-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand","New-AzApplicationGatewaySslCertificate","1","8100","New-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand","Remove-AzApplicationGatewaySslCertificate","1","8100","Remove-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand","Set-AzApplicationGatewaySslCertificate","1","8100","Set-AzApplicationGatewaySslCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand","New-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet New-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand","Set-AzApplicationGatewaySslPolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureApplicationGatewayCommand","Start-AzApplicationGateway","1","8100","Start-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureApplicationGatewayCommand","Stop-AzApplicationGateway","1","8100","Stop-AzApplicationGateway Does not support ShouldProcess but the cmdlet verb Stop indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8100","Add-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Add-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayUrlPathMapConfigCommand","Add-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Add-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8100","New-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet New-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand","New-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'New-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand","Remove-AzApplicationGatewayUrlPathMapConfig","1","8100","Remove-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8100","Set-AzApplicationGatewayUrlPathMapConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter PathRules of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8410","Parameter DefaultBackendHttpSettings of cmdlet Set-AzApplicationGatewayUrlPathMapConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand","Set-AzApplicationGatewayUrlPathMapConfig","1","8510","Cmdlet 'Set-AzApplicationGatewayUrlPathMapConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup","Remove-AzApplicationSecurityGroup","1","8600","Cmdlet 'Remove-AzApplicationSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan","Remove-AzDdosProtectionPlan","1","8600","Cmdlet 'Remove-AzDdosProtectionPlan' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitAuthorizationCommand","Add-AzExpressRouteCircuitAuthorization","1","8100","Add-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand","New-AzExpressRouteCircuitAuthorization","1","8100","New-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand","Remove-AzExpressRouteCircuitAuthorization","1","8100","Remove-AzExpressRouteCircuitAuthorization Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8100","Add-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatPoolConfigCommand","Add-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8100","New-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatPoolConfigCommand","New-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatPoolConfigCommand","Remove-AzLoadBalancerInboundNatPoolConfig","1","8100","Remove-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8100","Set-AzLoadBalancerInboundNatPoolConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatPoolConfigCommand","Set-AzLoadBalancerInboundNatPoolConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatPoolConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter AllowClassicOperations of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8100","Add-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitPeeringConfigCommand","Add-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Add-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8100","New-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand","New-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet New-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand","Remove-AzExpressRouteCircuitPeeringConfig","1","8100","Remove-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8100","Set-AzExpressRouteCircuitPeeringConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand","Set-AzExpressRouteCircuitPeeringConfig","1","8410","Parameter MicrosoftConfigAdvertisedPublicPrefixes of cmdlet Set-AzExpressRouteCircuitPeeringConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand","Remove-AzExpressRouteCircuit","1","8600","Cmdlet 'Remove-AzExpressRouteCircuit' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand","Set-AzExpressRouteCircuit","1","8100","Set-AzExpressRouteCircuit Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkInterfaceIpConfigCommand","Add-AzNetworkInterfaceIpConfig","1","8100","Add-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand","New-AzNetworkInterfaceIpConfig","1","8100","New-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand","Remove-AzNetworkInterfaceIpConfig","1","8100","Remove-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand","Set-AzNetworkInterfaceIpConfig","1","8100","Set-AzNetworkInterfaceIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand","Get-AzNetworkWatcher","1","8510","Cmdlet 'Get-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StartAzureNetworkWatcherResourceTroubleshootingCommand","Start-AzNetworkWatcherResourceTroubleshooting","1","8100","Start-AzNetworkWatcherResourceTroubleshooting Does not support ShouldProcess but the cmdlet verb Start indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand","New-AzPacketCaptureFilterConfig","1","8100","New-AzPacketCaptureFilterConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand","New-AzPacketCaptureScopeConfig","1","8100","New-AzPacketCaptureScopeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherPacketCaptureCommand","Remove-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Remove-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.StopAzureNetworkWatcherPacketCaptureCommand","Stop-AzNetworkWatcherPacketCapture","1","8600","Cmdlet 'Stop-AzNetworkWatcherPacketCapture' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8600","Cmdlet 'Remove-AzNetworkWatcher' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkWatcherCommand","Remove-AzNetworkWatcher","1","8510","Cmdlet 'Remove-AzNetworkWatcher' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmRouteTable","Get-AzRouteTable","1","8510","Cmdlet 'Get-AzRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRmRouteTable","Remove-AzRouteTable","1","8600","Cmdlet 'Remove-AzRouteTable' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8100","New-AzIpsecPolicy Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SALifeTimeSeconds of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand","New-AzIpsecPolicy","1","8410","Parameter SADataSizeKilobytes of cmdlet New-AzIpsecPolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand","Get-AzRouteFilter","1","8510","Cmdlet 'Get-AzRouteFilter' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureRouteFilterCommand","Remove-AzRouteFilter","1","8600","Cmdlet 'Remove-AzRouteFilter' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.TestAzurePrivateIPAddressAvailabilityCmdlet","Test-AzPrivateIPAddressAvailability","1","8510","Cmdlet 'Test-AzPrivateIPAddressAvailability' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzurePublicIpAddressCommand","Remove-AzPublicIpAddress","1","8600","Cmdlet 'Remove-AzPublicIpAddress' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePublicIpAddressCommand","Set-AzPublicIpAddress","1","8100","Set-AzPublicIpAddress Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurations of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRootCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter VpnClientRevokedCertificates of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRootCertificateCommand","Add-AzVpnClientRootCertificate","1","8100","Add-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVpnClientRevokedCertificateCommand","Add-AzVpnClientRevokedCertificate","1","8100","Add-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand","New-AzVpnClientRootCertificate","1","8100","New-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand","New-AzVpnClientRevokedCertificate","1","8100","New-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResizeAzureVirtualNetworkGatewayCommand","Resize-AzVirtualNetworkGateway","1","8100","Resize-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Resize indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8100","Remove-AzVpnClientRevokedCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRevokedCertificateCommand","Remove-AzVpnClientRevokedCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRevokedCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8100","Remove-AzVpnClientRootCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVpnClientRootCertificateCommand","Remove-AzVpnClientRootCertificate","1","8600","Cmdlet 'Remove-AzVpnClientRootCertificate' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8100","New-AzVirtualNetworkGatewayIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand","New-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'New-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkGatewayIpConfigCommand","Add-AzVirtualNetworkGatewayIpConfig","1","8510","Cmdlet 'Add-AzVirtualNetworkGatewayIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayCommand","Remove-AzVirtualNetworkGateway","1","8600","Cmdlet 'Remove-AzVirtualNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ResetAzureVirtualNetworkGatewayCommand","Reset-AzVirtualNetworkGateway","1","8100","Reset-AzVirtualNetworkGateway Does not support ShouldProcess but the cmdlet verb Reset indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayDefaultSiteCommand","Set-AzVirtualNetworkGatewayDefaultSite","1","8100","Set-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayDefaultSiteCommand","Remove-AzVirtualNetworkGatewayDefaultSite","1","8100","Remove-AzVirtualNetworkGatewayDefaultSite Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand","Remove-AzLocalNetworkGateway","1","8600","Cmdlet 'Remove-AzLocalNetworkGateway' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand","Set-AzLocalNetworkGateway","1","8100","Set-AzLocalNetworkGateway Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkGatewayConnectionCommand","Remove-AzVirtualNetworkGatewayConnection","1","8600","Cmdlet 'Remove-AzVirtualNetworkGatewayConnection' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayConnectionCommand","Set-AzVirtualNetworkGatewayConnection","1","8410","Parameter IpsecPolicies of cmdlet Set-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerBackendAddressPoolConfigCommand","Add-AzLoadBalancerBackendAddressPoolConfig","1","8100","Add-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddressPoolConfigCommand","New-AzLoadBalancerBackendAddressPoolConfig","1","8100","New-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendAddressPoolConfigCommand","Remove-AzLoadBalancerBackendAddressPoolConfig","1","8100","Remove-AzLoadBalancerBackendAddressPoolConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8100","Set-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerFrontendIpConfigCommand","Set-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Set-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8100","Add-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerFrontendIpConfigCommand","Add-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'Add-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8100","New-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerFrontendIpConfigCommand","New-AzLoadBalancerFrontendIpConfig","1","8510","Cmdlet 'New-AzLoadBalancerFrontendIpConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerFrontendIpConfigCommand","Remove-AzLoadBalancerFrontendIpConfig","1","8100","Remove-AzLoadBalancerFrontendIpConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureLoadBalancerCommand","Get-AzLoadBalancer","1","8510","Cmdlet 'Get-AzLoadBalancer' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8100","Set-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerInboundNatRuleConfigCommand","Set-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8100","Add-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerInboundNatRuleConfigCommand","Add-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8100","New-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerInboundNatRuleConfigCommand","New-AzLoadBalancerInboundNatRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerInboundNatRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerInboundNatRuleConfigCommand","Remove-AzLoadBalancerInboundNatRuleConfig","1","8100","Remove-AzLoadBalancerInboundNatRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8100","Set-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerRuleConfigCommand","Set-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Set-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8100","Add-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerRuleConfigCommand","Add-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'Add-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8100","New-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerRuleConfigCommand","New-AzLoadBalancerRuleConfig","1","8510","Cmdlet 'New-AzLoadBalancerRuleConfig' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerRuleCommand","Remove-AzLoadBalancerRuleConfig","1","8100","Remove-AzLoadBalancerRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerProbeConfigCommand","Set-AzLoadBalancerProbeConfig","1","8100","Set-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureLoadBalancerProbeConfigCommand","Add-AzLoadBalancerProbeConfig","1","8100","Add-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLoadBalancerProbeConfigCommand","New-AzLoadBalancerProbeConfig","1","8100","New-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerProbeCommand","Remove-AzLoadBalancerProbeConfig","1","8100","Remove-AzLoadBalancerProbeConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerCommand","Remove-AzLoadBalancer","1","8600","Cmdlet 'Remove-AzLoadBalancer' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand","Set-AzLoadBalancer","1","8100","Set-AzLoadBalancer Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand","Remove-AzNetworkInterface","1","8600","Cmdlet 'Remove-AzNetworkInterface' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand","Set-AzNetworkInterface","1","8100","Set-AzNetworkInterface Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand","Get-AzNetworkSecurityGroup","1","8510","Cmdlet 'Get-AzNetworkSecurityGroup' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand","New-AzNetworkSecurityRuleConfig","1","8100","New-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand","Get-AzNetworkSecurityRuleConfig","1","8410","Parameter DefaultRules of cmdlet Get-AzNetworkSecurityRuleConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityRuleConfigCommand","Remove-AzNetworkSecurityRuleConfig","1","8100","Remove-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityRuleConfigCommand","Set-AzNetworkSecurityRuleConfig","1","8100","Set-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureNetworkSecurityRuleConfigCommand","Add-AzNetworkSecurityRuleConfig","1","8100","Add-AzNetworkSecurityRuleConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand","New-AzNetworkSecurityGroup","1","8410","Parameter SecurityRules of cmdlet New-AzNetworkSecurityGroup does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureNetworkSecurityGroupCommand","Remove-AzNetworkSecurityGroup","1","8600","Cmdlet 'Remove-AzNetworkSecurityGroup' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkSecurityGroupCommand","Set-AzNetworkSecurityGroup","1","8100","Set-AzNetworkSecurityGroup Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8100","Add-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter UseRemoteGateways of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkPeeringCommand","Remove-AzVirtualNetworkPeering","1","8600","Cmdlet 'Remove-AzVirtualNetworkPeering' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkPeeringCommand","Set-AzVirtualNetworkPeering","1","8100","Set-AzVirtualNetworkPeering Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkCommand","Remove-AzVirtualNetwork","1","8600","Cmdlet 'Remove-AzVirtualNetwork' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, pleaseset the output type to 'bool' and make sure to implement the 'PassThru' parameter." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkCommand","Set-AzVirtualNetwork","1","8100","Set-AzVirtualNetwork Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureVirtualNetworkSubnetConfigCommand","Remove-AzVirtualNetworkSubnetConfig","1","8100","Remove-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzVirtualNetworkSubnetConfig","1","8100","Set-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzVirtualNetworkSubnetConfig","1","8100","Add-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzVirtualNetworkSubnetConfig","1","8100","New-AzVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzDelegation","1","8100","Add-AzDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzDelegation","1","8100","Remove-AzDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzDelegation","1","8100","New-AzDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzVirtualNetwork","1","8510","Cmdlet 'Get-AzVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzNetworkWatcherProtocolConfiguration","1","8100","New-AzNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzDdosProtectionPlan","1","8510","Cmdlet 'Get-AzDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureNetworkWatcherConfigFlowLogCommand","Set-AzNetworkWatcherConfigFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherConfigFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteCrossConnection","Get-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter ServiceProviderNotes of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8410","Parameter Peerings of cmdlet Set-AzExpressRouteCrossConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand","Get-AzExpressRouteCrossConnectionArpTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand","New-AzApplicationGatewayFirewallExclusionConfig","1","8100","New-AzApplicationGatewayFirewallExclusionConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayCustomErrorCommand","Add-AzApplicationGatewayCustomError","1","8100","Add-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand","New-AzApplicationGatewayCustomError","1","8100","New-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand","Remove-AzApplicationGatewayCustomError","1","8100","Remove-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayCustomErrorCommand","Set-AzApplicationGatewayCustomError","1","8100","Set-AzApplicationGatewayCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCustomErrorCommand","Add-AzApplicationGatewayHttpListenerCustomError","1","8100","Add-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCustomErrorCommand","New-AzApplicationGatewayHttpListenerCustomError","1","8100","New-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand","Remove-AzApplicationGatewayHttpListenerCustomError","1","8100","Remove-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCustomErrorCommand","Set-AzApplicationGatewayHttpListenerCustomError","1","8100","Set-AzApplicationGatewayHttpListenerCustomError Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand","New-AzVirtualHubRoute","1","8100","New-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzVirtualHubRouteTable","1","8100","New-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand","New-AzExpressRouteCircuit","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRouteCircuit does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort","New-AzExpressRoutePort","1","8410","Parameter BandwidthInGbps of cmdlet New-AzExpressRoutePort does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand","New-AzVirtualNetworkGatewayConnection","1","8410","Parameter ExpressRouteGatewayBypass of cmdlet New-AzVirtualNetworkGatewayConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand","New-AzApplicationGatewayRewriteRuleActionSet","1","8100","New-AzApplicationGatewayRewriteRuleActionSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand","New-AzApplicationGatewayRewriteRuleHeaderConfiguration","1","8100","New-AzApplicationGatewayRewriteRuleHeaderConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand","New-AzApplicationGatewayRewriteRuleCondition","1","8100","New-AzApplicationGatewayRewriteRuleCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRewriteRuleSetCommand","Add-AzApplicationGatewayRewriteRuleSet","1","8100","Add-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand","New-AzApplicationGatewayRewriteRuleSet","1","8100","New-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand","Remove-AzApplicationGatewayRewriteRuleSet","1","8100","Remove-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand","Set-AzApplicationGatewayRewriteRuleSet","1","8100","Set-AzApplicationGatewayRewriteRuleSet Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand","New-AzApplicationGatewayRewriteRule","1","8100","New-AzApplicationGatewayRewriteRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand","New-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet New-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MinScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand","Set-AzExpressRouteGateway","1","8410","Parameter MaxScaleUnits of cmdlet Set-AzExpressRouteGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile","1","8100","New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic","1","8100","Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic Does not support ShouldProcess but the cmdlet verb Invoke indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand","New-AzApplicationGatewayFirewallCondition","1","8100","New-AzApplicationGatewayFirewallCondition Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand","New-AzApplicationGatewayFirewallCustomRule","1","8100","New-AzApplicationGatewayFirewallCustomRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand","New-AzApplicationGatewayFirewallMatchVariable","1","8100","New-AzApplicationGatewayFirewallMatchVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand","New-AzPrivateLinkServiceConnection","1","8100","New-AzPrivateLinkServiceConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateEndpointConnection","Set-AzPrivateEndpointConnection","1","8100","Set-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration","New-AzPrivateLinkServiceIpConfig","1","8100","New-AzPrivateLinkServiceIpConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzPrivateEndpointCommand","Set-AzPrivateEndpoint","1","8100","Set-AzPrivateEndpoint Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.ApproveAzurePrivateEndpointConnection","Approve-AzPrivateEndpointConnection","1","8100","Approve-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Approve indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.DenyAzurePrivateEndpointConnection","Deny-AzPrivateEndpointConnection","1","8100","Deny-AzPrivateEndpointConnection Does not support ShouldProcess but the cmdlet verb Deny indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzurePrivateLinkServiceCommand","Set-AzPrivateLinkService","1","8100","Set-AzPrivateLinkService Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand","New-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8100","New-AzVpnSiteLinkConnection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand","New-AzVpnSiteLinkConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet New-AzVpnSiteLinkConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8100","New-AzVpnSiteLink Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Cortex.VpnGateway.UpdateAzureRmVpnConnectionCommand","Update-AzVpnConnection","1","8410","Parameter UsePolicyBasedTrafficSelectors of cmdlet Update-AzVpnConnection does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand","New-AzExpressRoutePortIdentity","1","8100","New-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand","Remove-AzExpressRoutePortIdentity","1","8100","Remove-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand","Set-AzExpressRoutePortIdentity","1","8100","Set-AzExpressRoutePortIdentity Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand","New-AzFirewallPolicyApplicationRule","1","8100","New-AzFirewallPolicyApplicationRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand","New-AzFirewallPolicyFilterRuleCollection","1","8100","New-AzFirewallPolicyFilterRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionsCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8100","New-AzFirewallPolicyNetworkRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteCommand","Add-AzVirtualHubRoute","1","8100","Add-AzVirtualHubRoute Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand","New-AzFirewallThreatIntelWhitelist","1","8100","New-AzFirewallThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress","New-AzFirewallHubPublicIpAddress","1","8100","New-AzFirewallHubPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress","New-AzFirewallHubIpAddress","1","8100","New-AzFirewallHubIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress","New-AzFirewallPublicIpAddress","1","8100","New-AzFirewallPublicIpAddress Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand","New-AzApplicationGatewayFirewallPolicyExclusion","1","8100","New-AzApplicationGatewayFirewallPolicyExclusion Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand","New-AzApplicationGatewayFirewallPolicyManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8100","New-AzApplicationGatewayFirewallPolicySetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureRmVirtualHubRouteTableCommand","Add-AzVirtualHubRouteTable","1","8100","Add-AzVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayHttpListenerCommand","Add-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand","New-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayHttpListenerCommand","Set-AzApplicationGatewayHttpListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayHttpListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand","New-AzVpnSiteLink","1","8510","Cmdlet 'New-AzVpnSiteLink' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureIpAllocationCommand","Get-AzIpAllocation","1","8510","Cmdlet 'Get-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand","Remove-AzIpAllocation","1","8510","Cmdlet 'Remove-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8100","Set-AzIpAllocation Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand","Set-AzIpAllocation","1","8510","Cmdlet 'Set-AzIpAllocation' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand","New-AzLocalNetworkGateway","1","8510","Cmdlet 'New-AzLocalNetworkGateway' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand","New-AzNetworkWatcherConnectionMonitorEndpointObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorEndpointObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand","New-AzNetworkWatcherConnectionMonitorObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand","New-AzNetworkWatcherConnectionMonitorTestConfigurationObject","1","8410","Parameter SuccessThresholdRoundTripTimeMs of cmdlet New-AzNetworkWatcherConnectionMonitorTestConfigurationObject does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand","New-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet New-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter RetentionPolicyDays of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand","Set-AzNetworkWatcherFlowLog","1","8410","Parameter EnableTrafficAnalytics of cmdlet Set-AzNetworkWatcherFlowLog does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand","New-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet New-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkGatewayCommand","Set-AzVirtualNetworkGateway","1","8410","Parameter IpConfigurationBgpPeeringAddresses of cmdlet Set-AzVirtualNetworkGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8100","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject","New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject","1","8510","Cmdlet 'New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand","New-AzRadiusServer","1","8100","New-AzRadiusServer Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand","New-AzPrivateDnsZoneConfig","1","8100","New-AzPrivateDnsZoneConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayPrivateLinkConfigurationCommand","Add-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Add-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand","New-AzApplicationGatewayPrivateLinkConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand","New-AzApplicationGatewayPrivateLinkIpConfiguration","1","8100","New-AzApplicationGatewayPrivateLinkIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand","Remove-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Remove-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand","Set-AzApplicationGatewayPrivateLinkConfiguration","1","8100","Set-AzApplicationGatewayPrivateLinkConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand","New-AzFirewallPolicyThreatIntelWhitelist","1","8100","New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8100","New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand","New-AzRoutingConfiguration","1","8100","New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand","New-AzStaticRoute","1","8100","New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8510","Cmdlet 'New-AzFirewallPolicyNatRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, andboth of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA","New-AzExpressRoutePortLOA","1","8100","New-AzExpressRoutePortLOA Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand","New-AzO365PolicyProperty","1","8100","New-AzO365PolicyProperty Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand","New-AzApplicationGatewayClientAuthConfiguration","1","8100","New-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand","Remove-AzApplicationGatewayClientAuthConfiguration","1","8100","Remove-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayClientAuthConfigurationCommand","Set-AzApplicationGatewayClientAuthConfiguration","1","8100","Set-AzApplicationGatewayClientAuthConfiguration Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter TrustedClientCertificates of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter SslProfiles of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand","Add-AzApplicationGatewaySslProfile","1","8100","Add-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewaySslProfileCommand","Add-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet Add-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand","New-AzApplicationGatewaySslProfile","1","8100","New-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand","New-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet New-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand","Remove-AzApplicationGatewaySslProfile","1","8100","Remove-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand","Set-AzApplicationGatewaySslProfile","1","8100","Set-AzApplicationGatewaySslProfile Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand","Set-AzApplicationGatewaySslProfile","1","8410","Parameter TrustedClientCertificates of cmdlet Set-AzApplicationGatewaySslProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand","Set-AzApplicationGatewaySslProfilePolicy","1","8410","Parameter DisabledSslProtocols of cmdlet Set-AzApplicationGatewaySslProfilePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand","Remove-AzApplicationGatewaySslProfilePolicy","1","8100","Remove-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand","Set-AzApplicationGatewaySslProfilePolicy","1","8100","Set-AzApplicationGatewaySslProfilePolicy Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayTrustedClientCertificateCommand","Add-AzApplicationGatewayTrustedClientCertificate","1","8100","Add-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand","New-AzApplicationGatewayTrustedClientCertificate","1","8100","New-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand","Remove-AzApplicationGatewayTrustedClientCertificate","1","8100","Remove-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand","Set-AzApplicationGatewayTrustedClientCertificate","1","8100","Set-AzApplicationGatewayTrustedClientCertificate Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRule","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet","1","8100","New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand","New-AzPrivateEndpointIpConfiguration","1","8100","New-AzPrivateEndpointIpConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand","Add-AzApplicationGatewayListener","1","8100","Add-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand","New-AzApplicationGatewayListener","1","8100","New-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand","Remove-AzApplicationGatewayListener","1","8100","Remove-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand","Set-AzApplicationGatewayListener","1","8100","Set-AzApplicationGatewayListener Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayListenerCommand","Add-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet Add-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand","New-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet New-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayListenerCommand","Set-AzApplicationGatewayListener","1","8410","Parameter HostNames of cmdlet Set-AzApplicationGatewayListener does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter Listeners of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand","New-AzApplicationGateway","1","8410","Parameter RoutingRules of cmdlet New-AzApplicationGateway does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand","Add-AzApplicationGatewayRoutingRule","1","8100","Add-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayRoutingRuleCommand","Add-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet Add-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand","New-AzApplicationGatewayRoutingRule","1","8100","New-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand","New-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet New-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand","Remove-AzApplicationGatewayRoutingRule","1","8100","Remove-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand","Set-AzApplicationGatewayRoutingRule","1","8100","Set-AzApplicationGatewayRoutingRule Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand","Set-AzApplicationGatewayRoutingRule","1","8410","Parameter BackendSettings of cmdlet Set-AzApplicationGatewayRoutingRule does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand","Add-AzApplicationGatewayBackendSetting","1","8100","Add-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.AddAzureApplicationGatewayBackendSettingsCommand","Add-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Add-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand","New-AzApplicationGatewayBackendSetting","1","8100","New-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand","New-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet New-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand","Remove-AzApplicationGatewayBackendSetting","1","8100","Remove-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand","Set-AzApplicationGatewayBackendSetting","1","8100","Set-AzApplicationGatewayBackendSetting Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayBackendSettingsCommand","Set-AzApplicationGatewayBackendSetting","1","8410","Parameter AuthenticationCertificates of cmdlet Set-AzApplicationGatewayBackendSetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand","New-AzNetworkManagerAddressPrefixItem","1","8100","New-AzNetworkManagerAddressPrefixItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand","New-AzNetworkManagerConnectivityGroupItem","1","8100","New-AzNetworkManagerConnectivityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerGroupMembersItemCommand","New-AzNetworkManagerGroupMembersItem","1","8100","New-AzNetworkManagerGroupMembersItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand","New-AzNetworkManagerHub","1","8100","New-AzNetworkManagerHub Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand","New-AzNetworkManagerScope","1","8100","New-AzNetworkManagerScope Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand","New-AzNetworkManagerSecurityGroupItem","1","8100","New-AzNetworkManagerSecurityGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand","New-AzVirtualNetworkGatewayPolicyGroup","1","8100","New-AzVirtualNetworkGatewayPolicyGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand","New-AzVirtualNetworkGatewayPolicyGroupMember","1","8100","New-AzVirtualNetworkGatewayPolicyGroupMember Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand","New-AzVpnClientConnectionConfiguration","1","8100","New-AzVpnClientConnectionConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand","New-AzFirewallPolicySnat","1","8100","New-AzFirewallPolicySnat Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand","New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration","1","8100","New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand","New-AzApplicationGatewayFirewallPolicyLogScrubbingRule","1","8100","New-AzApplicationGatewayFirewallPolicyLogScrubbingRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand","New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession","1","8100","New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand","New-AzApplicationGatewayFirewallCustomRuleGroupByVariable","1","8100","New-AzApplicationGatewayFirewallCustomRuleGroupByVariable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand","New-AzVirtualRouterAutoScaleConfiguration","1","8100","New-AzVirtualRouterAutoScaleConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Az.Network","Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand","New-AzBastion","1","8410","Parameter EnableKerberos of cmdlet New-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand","Set-AzBastion","1","8410","Parameter EnableKerberos of cmdlet Set-AzBastion does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand","New-AzApplicationGatewayFirewallPolicySetting","1","8410","Parameter JSChallengeCookieExpirationInMins of cmdlet New-AzApplicationGatewayFirewallPolicySetting does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand","New-AzApplicationGatewayHeaderValueMatcher","1","8100","New-AzApplicationGatewayHeaderValueMatcher Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingGroupItemCommand","New-AzNetworkManagerRoutingGroupItem","1","8100","New-AzNetworkManagerRoutingGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleDestinationCommand","New-AzNetworkManagerRoutingRuleDestination","1","8100","New-AzNetworkManagerRoutingRuleDestination Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleNextHopCommand","New-AzNetworkManagerRoutingRuleNextHop","1","8100","New-AzNetworkManagerRoutingRuleNextHop Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserGroupItemCommand","New-AzNetworkManagerSecurityUserGroupItem","1","8100","New-AzNetworkManagerSecurityUserGroupItem Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter PeerCompleteVnets of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter LocalSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkPeeringCommand","Add-AzVirtualNetworkPeering","1","8410","Parameter RemoteSubnetNames of cmdlet Add-AzVirtualNetworkPeering does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.AddAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Add-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.RemoveExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Remove-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitMicrosoftPeeringPrefixConfigCommand","Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig","1","8100","Set-AzExpressRouteCircuitMicrosoftPeeringPrefixConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayMigrationParameters","New-AzVirtualNetworkGatewayMigrationParameter","1","8100","New-AzVirtualNetworkGatewayMigrationParameter Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommandV2","New-AzNetworkWatcherPacketCaptureV2","1","8410","Parameter CaptureSettings of cmdlet New-AzNetworkWatcherPacketCaptureV2 does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Az.Network","Microsoft.Azure.Commands.Network.NetworkWatcher.PacketCapture.NewPacketCaptureSettingsCommand","New-AzPacketCaptureSettingsConfig","1","8100","New-AzPacketCaptureSettingsConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file From 2df74d7ac6197708bcccd942d3c08cc71f44b1b3 Mon Sep 17 00:00:00 2001 From: Sachin Panchal Date: Fri, 13 Jun 2025 19:40:07 +0530 Subject: [PATCH 6/6] Added some Test assert regarding capture settings --- .../ScenarioTests/NetworkWatcherAPITests.ps1 | 7 +- .../TestPacketCaptureVMSSWithRingBuffer.json | 1422 ++++++++++------- 2 files changed, 889 insertions(+), 540 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 index a44d10a1546d..ecf7ad873062 100644 --- a/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/NetworkWatcherAPITests.ps1 @@ -749,6 +749,11 @@ function Test-PacketCaptureV2WithRingBuffer { #Verification Assert-AreEqual $pc3.Name $pcName3 Assert-AreEqual "Succeeded" $pc3.ProvisioningState + Assert-AreEqual 2 $c1.FileCount + Assert-AreEqual 102400 $c1.FileSizeInBytes + Assert-AreEqual 60 $c1.SessionTimeLimitInSeconds + Assert-Null $pc3.TotalBytesPerSession + Assert-Null $pc3.TimeLimitInSeconds Assert-AreEqual $pc3.TargetType AzureVMSS #Stop packet capture @@ -761,7 +766,7 @@ function Test-PacketCaptureV2WithRingBuffer { } finally { # Cleanup - Clean-ResourceGroup $resourceGroupName + # Clean-ResourceGroup $resourceGroupName #Clean-ResourceGroup $nwRgName } } diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json index 47580f2c00d9..d089cb17869e 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkWatcherAPITests/TestPacketCaptureVMSSWithRingBuffer.json @@ -6,7 +6,7 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2e551be0-287c-423c-81f9-43564a9df14b" + "a0fda4f2-b988-4bc0-b8a1-6edf970ac7e4" ], "Accept-Language": [ "en-US" @@ -15,7 +15,7 @@ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -33,13 +33,13 @@ "16499" ], "x-ms-request-id": [ - "35197d65-a3db-491c-9a41-fee9a919fbcb" + "cd26ffe5-99ee-4fb2-9818-51aac0138ce2" ], "x-ms-correlation-request-id": [ - "35197d65-a3db-491c-9a41-fee9a919fbcb" + "cd26ffe5-99ee-4fb2-9818-51aac0138ce2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T200926Z:35197d65-a3db-491c-9a41-fee9a919fbcb" + "INDONESIACENTRAL:20250613T134213Z:cd26ffe5-99ee-4fb2-9818-51aac0138ce2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 705FA0BCD95441DA9A3682817A37CB01 Ref B: MAA201060516017 Ref C: 2025-05-28T20:09:25Z" + "Ref A: 7458A8B1BDB04EC1BB24A9C131B738D7 Ref B: MAA201060514035 Ref C: 2025-06-13T13:42:11Z" ], "Date": [ - "Wed, 28 May 2025 20:09:26 GMT" + "Fri, 13 Jun 2025 13:42:12 GMT" ], "Content-Length": [ "197144" @@ -75,7 +75,7 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c5b54ea3-3cce-4134-b5c9-f3ba7b0dfce6" + "224d0aad-26d0-4677-8600-59bfd5795593" ], "Accept-Language": [ "en-US" @@ -84,7 +84,7 @@ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -96,19 +96,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "1098" + "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ - "16498" + "16499" ], "x-ms-request-id": [ - "2854308b-e597-44cb-ba84-09b20718fc2b" + "b515f03d-89e6-4633-81a7-8818ee0efaea" ], "x-ms-correlation-request-id": [ - "2854308b-e597-44cb-ba84-09b20718fc2b" + "b515f03d-89e6-4633-81a7-8818ee0efaea" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T200929Z:2854308b-e597-44cb-ba84-09b20718fc2b" + "SOUTHEASTASIA:20250613T134215Z:b515f03d-89e6-4633-81a7-8818ee0efaea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,10 +120,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 2541C31A6F42411FB4F02217D631369B Ref B: MAA201060516047 Ref C: 2025-05-28T20:09:28Z" + "Ref A: CA6CFFDB25A749A393FD95B12BCBD8F4 Ref B: MAA201060513029 Ref C: 2025-06-13T13:42:14Z" ], "Date": [ - "Wed, 28 May 2025 20:09:29 GMT" + "Fri, 13 Jun 2025 13:42:15 GMT" ], "Content-Length": [ "197144" @@ -139,12 +139,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "50f393a1-b2b3-41ec-a5a4-1bcd6c8cd5b3" + "18c53086-caa7-45aa-956a-4561e17cf127" ], "Accept-Language": [ "en-US" @@ -153,7 +153,7 @@ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -177,13 +177,13 @@ "11999" ], "x-ms-request-id": [ - "d9385682-da1b-4ccf-9392-93bbbce6afdd" + "250b77cf-8268-4a2e-9290-3d4f632991b2" ], "x-ms-correlation-request-id": [ - "d9385682-da1b-4ccf-9392-93bbbce6afdd" + "250b77cf-8268-4a2e-9290-3d4f632991b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T200934Z:d9385682-da1b-4ccf-9392-93bbbce6afdd" + "SOUTHEASTASIA:20250613T134220Z:250b77cf-8268-4a2e-9290-3d4f632991b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -195,13 +195,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 5F57DABDABBF446A99EC9B25AC33B9B9 Ref B: MAA201060515009 Ref C: 2025-05-28T20:09:31Z" + "Ref A: DAC0023E4AB447C5AC5CC5C3645BBC78 Ref B: MAA201060516009 Ref C: 2025-06-13T13:42:17Z" ], "Date": [ - "Wed, 28 May 2025 20:09:34 GMT" + "Fri, 13 Jun 2025 13:42:20 GMT" ], "Content-Length": [ - "176" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,16 +210,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001\",\r\n \"name\": \"psnrp3001\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "aed64597-341b-466f-bd8a-7006d0f386a3" + "e91a4307-75b8-4e0f-ac3f-32d059f96d09" ], "Accept-Language": [ "en-US" @@ -228,16 +228,16 @@ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9969" + "9970" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"string\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"string\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"int\"\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"bool\"\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"location\": {\r\n \"type\": \"string\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"int\"\r\n }\r\n },\r\n \"variables\": {\r\n \"namingInfix\": \"[toLower(substring(concat(parameters('vmssName'), uniqueString(resourceGroup().id)), 0, 9))]\",\r\n \"longNamingInfix\": \"[toLower(parameters('vmssName'))]\",\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"subnetPrefix\": \"10.0.0.0/24\",\r\n \"virtualNetworkName\": \"[concat(variables('namingInfix'), 'vnet')]\",\r\n \"publicIPAddressName\": \"[concat(variables('namingInfix'), 'pip')]\",\r\n \"subnetName\": \"[concat(variables('namingInfix'), 'subnet')]\",\r\n \"loadBalancerName\": \"[concat(variables('namingInfix'), 'lb')]\",\r\n \"publicIPAddressID\": \"[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]\",\r\n \"lbProbeID\": \"[resourceId('Microsoft.Network/loadBalancers/probes',variables('loadBalancerName'), 'tcpProbe')]\",\r\n \"natPoolName\": \"[concat(variables('namingInfix'), 'natpool')]\",\r\n \"bePoolName\": \"[concat(variables('namingInfix'), 'bepool')]\",\r\n \"lbPoolID\": \"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools',variables('loadBalancerName'),variables('bePoolName'))]\",\r\n \"natStartPort\": 50000,\r\n \"natEndPort\": 50119,\r\n \"natBackendPort\": 3389,\r\n \"nicName\": \"[concat(variables('namingInfix'), 'nic')]\",\r\n \"ipConfigName\": \"[concat(variables('namingInfix'), 'ipconfig')]\",\r\n \"frontEndIPConfigID\": \"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations',variables('loadBalancerName'),'loadBalancerFrontEnd')]\",\r\n \"osType\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"[parameters('windowsOSVersion')]\",\r\n \"version\": \"latest\"\r\n },\r\n \"imageReference\": \"[variables('osType')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('loadBalancerName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]\"\r\n ],\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"[variables('publicIPAddressID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"[variables('bePoolName')]\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"[variables('natPoolName')]\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": \"[variables('natStartPort')]\",\r\n \"frontendPortRangeEnd\": \"[variables('natEndPort')]\",\r\n \"backendPort\": \"[variables('natBackendPort')]\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"LBRule\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"probe\": {\r\n \"id\": \"[variables('lbProbeID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"tcpProbe\",\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('namingInfix')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('vmSku')]\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": \"[parameters('instanceCount')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/loadBalancers', variables('loadBalancerName'))]\",\r\n \"[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]\"\r\n ],\r\n \"properties\": {\r\n \"overprovision\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"singlePlacementGroup\": \"[parameters('singlePlacementGroup')]\",\r\n \"platformFaultDomainCount\": \"[parameters('platformFaultDomainCount')]\",\r\n \"virtualMachineProfile\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"imageReference\": \"[variables('imageReference')]\"\r\n },\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"[variables('namingInfix')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"Sanitized\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"[variables('nicName')]\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"[variables('ipConfigName')]\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"[resourceId('Microsoft.Network/loadBalancers/inboundNatPools', variables('loadBalancerName'), variables('natPoolName'))]\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('publicIPAddressName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"[variables('longNamingInfix')]\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('virtualNetworkName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"[variables('addressPrefix')]\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"[variables('subnetName')]\",\r\n \"properties\": {\r\n \"addressPrefix\": \"[variables('subnetPrefix')]\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"string\",\r\n \"value\": \"[concat('http://', reference(variables('publicIPAddressName')).dnsSettings.fqdn, '/MyApp')]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"value\": \"netanalytics-32psnrp644\"\r\n },\r\n \"location\": {\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"string\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"string\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"int\"\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"bool\"\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"location\": {\r\n \"type\": \"string\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"int\"\r\n }\r\n },\r\n \"variables\": {\r\n \"namingInfix\": \"[toLower(substring(concat(parameters('vmssName'), uniqueString(resourceGroup().id)), 0, 9))]\",\r\n \"longNamingInfix\": \"[toLower(parameters('vmssName'))]\",\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"subnetPrefix\": \"10.0.0.0/24\",\r\n \"virtualNetworkName\": \"[concat(variables('namingInfix'), 'vnet')]\",\r\n \"publicIPAddressName\": \"[concat(variables('namingInfix'), 'pip')]\",\r\n \"subnetName\": \"[concat(variables('namingInfix'), 'subnet')]\",\r\n \"loadBalancerName\": \"[concat(variables('namingInfix'), 'lb')]\",\r\n \"publicIPAddressID\": \"[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]\",\r\n \"lbProbeID\": \"[resourceId('Microsoft.Network/loadBalancers/probes',variables('loadBalancerName'), 'tcpProbe')]\",\r\n \"natPoolName\": \"[concat(variables('namingInfix'), 'natpool')]\",\r\n \"bePoolName\": \"[concat(variables('namingInfix'), 'bepool')]\",\r\n \"lbPoolID\": \"[resourceId('Microsoft.Network/loadBalancers/backendAddressPools',variables('loadBalancerName'),variables('bePoolName'))]\",\r\n \"natStartPort\": 50000,\r\n \"natEndPort\": 50119,\r\n \"natBackendPort\": 3389,\r\n \"nicName\": \"[concat(variables('namingInfix'), 'nic')]\",\r\n \"ipConfigName\": \"[concat(variables('namingInfix'), 'ipconfig')]\",\r\n \"frontEndIPConfigID\": \"[resourceId('Microsoft.Network/loadBalancers/frontendIPConfigurations',variables('loadBalancerName'),'loadBalancerFrontEnd')]\",\r\n \"osType\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"[parameters('windowsOSVersion')]\",\r\n \"version\": \"latest\"\r\n },\r\n \"imageReference\": \"[variables('osType')]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('loadBalancerName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]\"\r\n ],\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"[variables('publicIPAddressID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"[variables('bePoolName')]\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"[variables('natPoolName')]\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": \"[variables('natStartPort')]\",\r\n \"frontendPortRangeEnd\": \"[variables('natEndPort')]\",\r\n \"backendPort\": \"[variables('natBackendPort')]\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"LBRule\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"[variables('frontEndIPConfigID')]\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"probe\": {\r\n \"id\": \"[variables('lbProbeID')]\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"tcpProbe\",\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('namingInfix')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('vmSku')]\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": \"[parameters('instanceCount')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[resourceId('Microsoft.Network/loadBalancers', variables('loadBalancerName'))]\",\r\n \"[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]\"\r\n ],\r\n \"properties\": {\r\n \"overprovision\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"singlePlacementGroup\": \"[parameters('singlePlacementGroup')]\",\r\n \"platformFaultDomainCount\": \"[parameters('platformFaultDomainCount')]\",\r\n \"virtualMachineProfile\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n },\r\n \"imageReference\": \"[variables('imageReference')]\"\r\n },\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"[variables('namingInfix')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"Sanitized\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"[variables('nicName')]\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"[variables('ipConfigName')]\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]\"\r\n },\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"[variables('lbPoolID')]\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"[resourceId('Microsoft.Network/loadBalancers/inboundNatPools', variables('loadBalancerName'), variables('natPoolName'))]\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('publicIPAddressName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"[variables('longNamingInfix')]\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"apiVersion\": \"2020-06-01\",\r\n \"name\": \"[variables('virtualNetworkName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"[variables('addressPrefix')]\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"[variables('subnetName')]\",\r\n \"properties\": {\r\n \"addressPrefix\": \"[variables('subnetPrefix')]\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"string\",\r\n \"value\": \"[concat('http://', reference(variables('publicIPAddressName')).dnsSettings.fqdn, '/MyApp')]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"value\": \"psnrp9747\"\r\n },\r\n \"instanceCount\": {\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"value\": \"netanalytics-32psnrp3001\"\r\n },\r\n \"location\": {\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -246,7 +246,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4" ], "x-ms-deployment-engine-version": [ "1.363.0" @@ -258,13 +258,13 @@ "12000" ], "x-ms-request-id": [ - "e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + "3d84f517-fce3-4a82-be4a-4a40d251d49e" ], "x-ms-correlation-request-id": [ - "e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + "3d84f517-fce3-4a82-be4a-4a40d251d49e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T200945Z:e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f" + "SOUTHEASTASIA:20250613T134234Z:3d84f517-fce3-4a82-be4a-4a40d251d49e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -276,13 +276,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 0D4665F7C1F24E93B6883298A87CD099 Ref B: MAA201060513021 Ref C: 2025-05-28T20:09:35Z" + "Ref A: 5B3B7E039B3D46C9905DB2B213F51426 Ref B: MAA201060513029 Ref C: 2025-06-13T13:42:21Z" ], "Date": [ - "Wed, 28 May 2025 20:09:45 GMT" + "Fri, 13 Jun 2025 13:42:33 GMT" ], "Content-Length": [ - "2408" + "2416" ], "Content-Type": [ "application/json; charset=utf-8" @@ -291,19 +291,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2025-05-28T20:09:37.4100895Z\",\r\n \"duration\": \"PT0.0009298S\",\r\n \"correlationId\": \"e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9690pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9690vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9690\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001\",\r\n \"name\": \"psnrp3001\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9747\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2025-06-13T13:42:24.8448118Z\",\r\n \"duration\": \"PT0.0006481S\",\r\n \"correlationId\": \"3d84f517-fce3-4a82-be4a-4a40d251d49e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/publicIPAddresses/psnrp9747pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9747pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9747lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9747lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9747vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9747\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -321,13 +321,13 @@ "16499" ], "x-ms-request-id": [ - "14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + "589ba915-9ef4-4b56-bca8-88a5930e5256" ], "x-ms-correlation-request-id": [ - "14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + "589ba915-9ef4-4b56-bca8-88a5930e5256" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201016Z:14c1f8fe-c5c0-4c86-92ca-9d559b7b9278" + "SOUTHEASTASIA:20250613T134305Z:589ba915-9ef4-4b56-bca8-88a5930e5256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -339,10 +339,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 0F6B478240EA45659DE707E2FC9880C3 Ref B: MAA201060513021 Ref C: 2025-05-28T20:10:15Z" + "Ref A: CAC1B6FC9ADF44CCB1956E872960E9C2 Ref B: MAA201060513029 Ref C: 2025-06-13T13:43:04Z" ], "Date": [ - "Wed, 28 May 2025 20:10:16 GMT" + "Fri, 13 Jun 2025 13:43:05 GMT" ], "Content-Length": [ "20" @@ -358,15 +358,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -384,13 +384,13 @@ "16499" ], "x-ms-request-id": [ - "a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + "357eb119-7591-4d91-95af-6a6379b9207c" ], "x-ms-correlation-request-id": [ - "a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + "357eb119-7591-4d91-95af-6a6379b9207c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201047Z:a8229f0b-5859-48e0-a5e5-fb4b24b2a962" + "SOUTHEASTASIA:20250613T134336Z:357eb119-7591-4d91-95af-6a6379b9207c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,10 +402,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: C947FA23318A4DE5AF907EF996CDA7A4 Ref B: MAA201060513021 Ref C: 2025-05-28T20:10:46Z" + "Ref A: 255ED5C74A0045E893B7F7DD2FB1905D Ref B: MAA201060513029 Ref C: 2025-06-13T13:43:35Z" ], "Date": [ - "Wed, 28 May 2025 20:10:47 GMT" + "Fri, 13 Jun 2025 13:43:36 GMT" ], "Content-Length": [ "20" @@ -421,15 +421,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -447,13 +447,13 @@ "16499" ], "x-ms-request-id": [ - "c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + "aaeff3a7-e30a-493d-9588-7957f3d0cf4e" ], "x-ms-correlation-request-id": [ - "c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + "aaeff3a7-e30a-493d-9588-7957f3d0cf4e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201118Z:c5dd99c5-acbc-47c1-b11e-af4de6c1bdd3" + "SOUTHEASTASIA:20250613T134407Z:aaeff3a7-e30a-493d-9588-7957f3d0cf4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,10 +465,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 4DAB7A49B24B4EB3B770B7B9EAAC594C Ref B: MAA201060513021 Ref C: 2025-05-28T20:11:17Z" + "Ref A: 2C209730C5F348ECB923AC27E7E4B47E Ref B: MAA201060513029 Ref C: 2025-06-13T13:44:06Z" ], "Date": [ - "Wed, 28 May 2025 20:11:18 GMT" + "Fri, 13 Jun 2025 13:44:07 GMT" ], "Content-Length": [ "20" @@ -484,15 +484,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -510,13 +510,13 @@ "16499" ], "x-ms-request-id": [ - "f1cfecc5-e992-4d51-8eea-f8050cda45a2" + "44d18f78-89e8-4865-b505-88e16c692655" ], "x-ms-correlation-request-id": [ - "f1cfecc5-e992-4d51-8eea-f8050cda45a2" + "44d18f78-89e8-4865-b505-88e16c692655" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T201149Z:f1cfecc5-e992-4d51-8eea-f8050cda45a2" + "SOUTHEASTASIA:20250613T134438Z:44d18f78-89e8-4865-b505-88e16c692655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,10 +528,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 67A7F2BA4B8A45FFA53CB725F0469F15 Ref B: MAA201060513021 Ref C: 2025-05-28T20:11:48Z" + "Ref A: 2B20F7597B1A44A8B7162E75CD8CE9DF Ref B: MAA201060513029 Ref C: 2025-06-13T13:44:37Z" ], "Date": [ - "Wed, 28 May 2025 20:11:49 GMT" + "Fri, 13 Jun 2025 13:44:38 GMT" ], "Content-Length": [ "20" @@ -547,15 +547,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -573,13 +573,13 @@ "16499" ], "x-ms-request-id": [ - "d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + "cb5425a7-65a0-418b-928e-90d76f7c8ddb" ], "x-ms-correlation-request-id": [ - "d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + "cb5425a7-65a0-418b-928e-90d76f7c8ddb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201221Z:d64eb25c-7d06-438d-9b48-7d3385e0ffc3" + "SOUTHEASTASIA:20250613T134509Z:cb5425a7-65a0-418b-928e-90d76f7c8ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591,10 +591,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 21611A4DD9DE44FEBC33DA7DFEEB86B7 Ref B: MAA201060513021 Ref C: 2025-05-28T20:12:20Z" + "Ref A: 07ED1A56945345BAB64DFE5722D57692 Ref B: MAA201060513029 Ref C: 2025-06-13T13:45:08Z" ], "Date": [ - "Wed, 28 May 2025 20:12:20 GMT" + "Fri, 13 Jun 2025 13:45:09 GMT" ], "Content-Length": [ "20" @@ -610,15 +610,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -636,13 +636,13 @@ "16499" ], "x-ms-request-id": [ - "b25ab4c7-4aad-45b9-ad44-a13661971426" + "78d10025-7845-466a-b77c-f96328d6a835" ], "x-ms-correlation-request-id": [ - "b25ab4c7-4aad-45b9-ad44-a13661971426" + "78d10025-7845-466a-b77c-f96328d6a835" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201252Z:b25ab4c7-4aad-45b9-ad44-a13661971426" + "SOUTHEASTASIA:20250613T134540Z:78d10025-7845-466a-b77c-f96328d6a835" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -654,10 +654,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 1743F6DE735241A19D053E5684FC8E99 Ref B: MAA201060513021 Ref C: 2025-05-28T20:12:51Z" + "Ref A: FFAE9F4E4DBC4A00ADD7E0CB32A225E6 Ref B: MAA201060513029 Ref C: 2025-06-13T13:45:39Z" ], "Date": [ - "Wed, 28 May 2025 20:12:51 GMT" + "Fri, 13 Jun 2025 13:45:40 GMT" ], "Content-Length": [ "20" @@ -673,15 +673,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644/operationStatuses/08584531439080664947?api-version=2016-09-01&t=638840597852382905&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=Ty5aO-1Tngb98UpWtsUZ8UhTbXsavoNBWaokqoFwE6mMdCDyJw5_Vpo4zfEHs1PAG5exU-xqBcw3lAm7v0TSoxNfuUqrq6328HwtPU3oD-gIAxHyOHwdxfQQDowGKV5dH3dF5i-G5bwYY0iRpbpex3WHyQamc4WCxOqROwb7oaFMQFuNpzHjtUuoYfmEnDXyX0aBDzSAM11SeafnHFuWDuhZl4l-buIXfpRgQIHbDnpQk0b3Knz3xjitNowKzhr4ygNxj-1wpKp8iWnvxpPpbzT_vvdnCKbasGIrhPqpCRQ1Ip9GRHYj7k2TgtzJuR53aaCVUyEobf-qy6pHXfPz1g&h=0dnFyEbCUfMXn5Gx14LNJV6w6magsiCrnskhZWXLfcA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg0NTMxNDM5MDgwNjY0OTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmdD02Mzg4NDA1OTc4NTIzODI5MDUmYz1NSUlIaHpDQ0JtLWdBd0lCQWdJVGZBZURFblBXX0t4SmJxOEVqZ0FBQjRNU2N6QU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qVXdOREl3TVRVeU1ESTNXaGNOTWpVeE1ERTNNVFV5TURJM1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMTzFTQXZ0NERJN0Z4eEJtWkJjZm9LRExpWHBTOFU1YWRaYlJsUnZWbS1FY0FXcUdOblZvMUF4YVh1M2doS01ZOTVMeGZmaHZjWUFaNTZXaGdPeEFfZ3BBVXptNHQweVcwYVZ6djd2QU9XWkhJRzFmdlRjV1lfc0hDa3VUeUNOQWNSYk5iYXFiaWRhSzlaT1RRMTliYVVRMjZrVmtQN3RqVGk2RFdXUmxNMjVkNFlRY0dhV0pvQndVdG9sLWhnQjVaX3JWTWxqUkY1UTFUOV8zWXBSQnc1N1NwSHZtYjMwSk5RU3BuZHlldS0tSXA4cE13cE5haUlSRjcwRzhXZmJUQm9KaFJxTnFOQUtCTFUzQ0FWVjRINmxZclh0U0stZ2taQzBFempaNHplX1hWREdCZDFzT1BzYk14NGFRZ1pFaXVESnV1azllcVR6enVyM0lEVWRyUDBDQXdFQUFhT0NCSFF3Z2dSd01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCU1JyQWE3MWtWcHBlb1pvblk3UVB5X1I3WFdRekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNSUdkQmdOVkhTQUVnWlV3Z1pJd0RBWUtLd1lCQkFHQ04zc0JBVEJtQmdvckJnRUVBWUkzZXdJQ01GZ3dWZ1lJS3dZQkJRVUhBZ0l3U2g1SUFETUFNd0JsQURBQU1RQTVBRElBTVFBdEFEUUFaQUEyQURRQUxRQTBBR1lBT0FCakFDMEFZUUF3QURVQU5RQXRBRFVBWWdCa0FHRUFaZ0JtQUdRQU5RQmxBRE1BTXdCa01Bd0dDaXNHQVFRQmdqZDdBd0l3REFZS0t3WUJCQUdDTjNzRUFqQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBQ2hRWHdTMF9FYU1iN0czQldHRGVvTmhBQUVhb0trSlZVeTVIVkd5V0tBREZtNlRwMldpZHdPSU1vT3UtSXVvQTYzNE9SSjdiSXdzQzJXaFVBMFo4LWMyQUFEOTU2ZEF0Q2tuNXBFQlhTcXd1S01NM2w5S09DbEFZMVJpQVFjUC1HV3RtYl9tcVpzcE83OEdIYXEtbXdpeUlEVUlDTS11WmwtcVI2VVZ0NnJMbjV4UHFITmtlbnhyc2xTX0czSUo5eUNWMXNmbHhoejkzQjdWUjlIN0J0T3hkX25xWk9ENXVTVjNPcFBuQVRUUk8wS0IzVkJiWjBLcXZkdFdvSGpOeXdMcU11aEpVdWZIdzJ6bWxRLVlqM25kaGFfeVR2T1FsVC04NWlrU295V0kwUDRfR2VFd1g5UmRraVZIVnp4M2dSOEh6RktrSlhPd1J2eFFFXzlPdl8wJnM9VHk1YU8tMVRuZ2I5OFVwV3RzVVo4VWhUYlhzYXZvTkJXYW9rcW9Gd0U2bU1kQ0R5Snc1X1ZwbzR6ZkVIczFQQUc1ZXhVLXhxQmN3M2xBbTd2MFRTb3hOZnVVcXJxNjMyOEh3dFBVM29ELWdJQXhIeU9Id2R4ZlFRRG93R0tWNWRIM2RGNWktRzVid1lZMGlScGJwZXgzV0h5UWFtYzRXQ3hPcVJPd2I3b2FGTVFGdU5wekhqdFV1b1lmbUVuRFh5WDBhQkR6U0FNMTFTZWFmbkhGdVdEdWhabDRsLWJ1SVhmcFJnUUlIYkRucFFrMGIzS256M3hqaXROb3dLemhyNHlnTnhqLTF3cEtwOGlXbnZ4cFBwYnpUX3Z2ZG5DS2Jhc0dJcmhQcXBDUlExSXA5R1JIWWo3azJUZ3R6SnVSNTNhYUNWVXlFb2JmLXF5NnBIWGZQejFnJmg9MGRuRnlFYkNVZk1YbjVHeDE0TE5KVjZ3Nm1hZ3NpQ3Juc2toWldYTGZjQQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -699,13 +699,13 @@ "16499" ], "x-ms-request-id": [ - "e3bf3220-b394-4bed-ab46-d616c4ef5350" + "579824e1-7319-4fe0-b6dd-714e07b8d7f2" ], "x-ms-correlation-request-id": [ - "e3bf3220-b394-4bed-ab46-d616c4ef5350" + "579824e1-7319-4fe0-b6dd-714e07b8d7f2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201322Z:e3bf3220-b394-4bed-ab46-d616c4ef5350" + "SOUTHEASTASIA:20250613T134611Z:579824e1-7319-4fe0-b6dd-714e07b8d7f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,10 +717,136 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 0964075773FC47938EB5D97D4E971B4C Ref B: MAA201060513021 Ref C: 2025-05-28T20:13:22Z" + "Ref A: CC44D64C3A6340AC809C442772B565F6 Ref B: MAA201060513029 Ref C: 2025-06-13T13:46:10Z" ], "Date": [ - "Wed, 28 May 2025 20:13:22 GMT" + "Fri, 13 Jun 2025 13:46:11 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "e2a27d11-7b64-42ac-a3ed-c98dec41f664" + ], + "x-ms-correlation-request-id": [ + "e2a27d11-7b64-42ac-a3ed-c98dec41f664" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250613T134642Z:e2a27d11-7b64-42ac-a3ed-c98dec41f664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7469A2890C0A4BAEBB037DFDBF1F8648 Ref B: MAA201060513029 Ref C: 2025-06-13T13:46:41Z" + ], + "Date": [ + "Fri, 13 Jun 2025 13:46:41 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001/operationStatuses/08584517847406275689?api-version=2016-09-01&t=638854189540324722&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=nac7N1FgF0fU4WBx3SAjRhE1SJuWT52SsFnfv6b9dlcw33RzgKJgOB4pEiIG-MZgMbjI077t6fP6A8jM9jJoCJ46wNuI72pP1qdI0CuT-AStqpQXFya76A5wsEgDhm0BOIeWXoG0mVX625mvWbjphApZyYgbXLM1e41P5ISUxkDjCONS7DDV4GhyKClI2LSZfWAFfCCPErh_OxODIFgF3Jco85xmoqvHohPxhrNFW8_VjIokb0QZ3_UW6V_b_gPu2_VtQiz-RgGvdLGsh4HTMJ3QYT5nh1KrkMXs_XBInC5R73QTZQH2kH0ytgnAAjGzMVvpIUB8zz7777WCVzN2Qw&h=2rIZv385yLkj4ghqachcGxBpZknZXe7OPw2qHmzHkD4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDEvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODQ1MTc4NDc0MDYyNzU2ODk/YXBpLXZlcnNpb249MjAxNi0wOS0wMSZ0PTYzODg1NDE4OTU0MDMyNDcyMiZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1uYWM3TjFGZ0YwZlU0V0J4M1NBalJoRTFTSnVXVDUyU3NGbmZ2NmI5ZGxjdzMzUnpnS0pnT0I0cEVpSUctTVpnTWJqSTA3N3Q2ZlA2QThqTTlqSm9DSjQ2d051STcycFAxcWRJMEN1VC1BU3RxcFFYRnlhNzZBNXdzRWdEaG0wQk9JZVdYb0cwbVZYNjI1bXZXYmpwaEFwWnlZZ2JYTE0xZTQxUDVJU1V4a0RqQ09OUzdERFY0R2h5S0NsSTJMU1pmV0FGZkNDUEVyaF9PeE9ESUZnRjNKY284NXhtb3F2SG9oUHhock5GVzhfVmpJb2tiMFFaM19VVzZWX2JfZ1B1Ml9WdFFpei1SZ0d2ZExHc2g0SFRNSjNRWVQ1bmgxS3JrTVhzX1hCSW5DNVI3M1FUWlFIMmtIMHl0Z25BQWpHek1WdnBJVUI4eno3Nzc3V0NWek4yUXcmaD0yckladjM4NXlMa2o0Z2hxYWNoY0d4QnBaa25aWGU3T1B3MnFIbXpIa0Q0", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "602a8c03-a92d-4ce3-bd37-b158296d0db8" + ], + "x-ms-correlation-request-id": [ + "602a8c03-a92d-4ce3-bd37-b158296d0db8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250613T134713Z:602a8c03-a92d-4ce3-bd37-b158296d0db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 741570A1446C4E9FA6841B505D29B97A Ref B: MAA201060513029 Ref C: 2025-06-13T13:47:12Z" + ], + "Date": [ + "Fri, 13 Jun 2025 13:47:12 GMT" ], "Content-Length": [ "22" @@ -736,15 +862,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzbnJwNjQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wc25ycDMwMDE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ] }, "RequestBody": "", @@ -762,13 +888,13 @@ "16499" ], "x-ms-request-id": [ - "fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + "b156bf5b-98db-4932-9862-66d2ad6582df" ], "x-ms-correlation-request-id": [ - "fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + "b156bf5b-98db-4932-9862-66d2ad6582df" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201323Z:fd647a9a-0d71-4948-b1d6-bafc0d9b22df" + "SOUTHEASTASIA:20250613T134713Z:b156bf5b-98db-4932-9862-66d2ad6582df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,13 +906,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: F8803888F6A746BABFCB087CF3A550BA Ref B: MAA201060513021 Ref C: 2025-05-28T20:13:23Z" + "Ref A: 8B53574D73F4474ABB2D0E8B0CA23608 Ref B: MAA201060513029 Ref C: 2025-06-13T13:47:13Z" ], "Date": [ - "Wed, 28 May 2025 20:13:23 GMT" + "Fri, 13 Jun 2025 13:47:13 GMT" ], "Content-Length": [ - "2774" + "2782" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,19 +921,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Resources/deployments/psnrp644\",\r\n \"name\": \"psnrp644\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9690\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2025-05-28T20:13:22.1347257Z\",\r\n \"duration\": \"PT3M44.7246362S\",\r\n \"correlationId\": \"e812dbaf-7fc7-46b1-8412-6bdde2ff3b4f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9690pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9690vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9690\"\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"String\",\r\n \"value\": \"http://psnrp9690.westcentralus.cloudapp.azure.com/MyApp\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachineScaleSets/psnrp9690\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/loadBalancers/psnrp9690lb\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/psnrp9690pip\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/virtualNetworks/psnrp9690vnet\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Resources/deployments/psnrp3001\",\r\n \"name\": \"psnrp3001\",\r\n \"properties\": {\r\n \"templateHash\": \"7756322736726885846\",\r\n \"parameters\": {\r\n \"vmSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n \"windowsOSVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2019-Datacenter\"\r\n },\r\n \"vmssName\": {\r\n \"type\": \"String\",\r\n \"value\": \"psnrp9747\"\r\n },\r\n \"instanceCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 3\r\n },\r\n \"singlePlacementGroup\": {\r\n \"type\": \"Bool\",\r\n \"value\": true\r\n },\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"netanaytics12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"West Central US\"\r\n },\r\n \"platformFaultDomainCount\": {\r\n \"type\": \"Int\",\r\n \"value\": 1\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2025-06-13T13:46:45.9324241Z\",\r\n \"duration\": \"PT4M21.0876123S\",\r\n \"correlationId\": \"3d84f517-fce3-4a82-be4a-4a40d251d49e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/publicIPAddresses/psnrp9747pip\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"psnrp9747pip\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9747lb\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb\",\r\n \"resourceType\": \"Microsoft.Network/loadBalancers\",\r\n \"resourceName\": \"psnrp9747lb\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"psnrp9747vnet\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"resourceName\": \"psnrp9747\"\r\n }\r\n ],\r\n \"outputs\": {\r\n \"applicationUrl\": {\r\n \"type\": \"String\",\r\n \"value\": \"http://psnrp9747.westcentralus.cloudapp.azure.com/MyApp\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachineScaleSets/psnrp9747\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/loadBalancers/psnrp9747lb\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/psnrp9747pip\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/virtualNetworks/psnrp9747vnet\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDI0LTA3LTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/publicIPAddresses?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "a172337d-ed2b-454d-ba2b-e2ce6abd07ba" + "46fd2fea-afb1-4a75-846f-160962afe1a2" ], "User-Agent": [ "FxVersion/8.0.1625.21506", @@ -825,13 +951,13 @@ "no-cache" ], "x-ms-original-request-ids": [ - "1908d6af-2e7e-4e46-924f-bb5e71af42d9" + "c6499ac4-d32c-4b9b-8116-17e9b2892f1a" ], "x-ms-correlation-request-id": [ - "85119ac0-642d-4763-a1b2-c06c6c98d8ae" + "9e9a8dae-1c39-4a5a-843f-56e66f3fb5f4" ], "x-ms-arm-service-request-id": [ - "41d3d4a2-2dcc-4cfa-8b57-bbd3e7b44e6c" + "9bd3169c-1cd1-42e5-b975-0496663438ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -843,10 +969,10 @@ "16499" ], "x-ms-request-id": [ - "85119ac0-642d-4763-a1b2-c06c6c98d8ae" + "9e9a8dae-1c39-4a5a-843f-56e66f3fb5f4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201327Z:85119ac0-642d-4763-a1b2-c06c6c98d8ae" + "SOUTHEASTASIA:20250613T134717Z:9e9a8dae-1c39-4a5a-843f-56e66f3fb5f4" ], "X-Content-Type-Options": [ "nosniff" @@ -855,13 +981,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 5EA6500FECDB48B99C50EA4CEA1F8219 Ref B: MAA201060513047 Ref C: 2025-05-28T20:13:24Z" + "Ref A: DF619767C40643F59A050A675EEF9C68 Ref B: MAA201060513019 Ref C: 2025-06-13T13:47:14Z" ], "Date": [ - "Wed, 28 May 2025 20:13:26 GMT" + "Fri, 13 Jun 2025 13:47:16 GMT" ], "Content-Length": [ - "877" + "879" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,16 +996,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9690pip\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/publicIPAddresses/psnrp9690pip\",\r\n \"etag\": \"W/\\\"9220ef4f-ae96-457a-8329-d1c4eca732ab\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d8b8a5ae-1597-4d49-ba05-d0d027e89785\",\r\n \"ipAddress\": \"13.71.248.122\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"psnrp9690\",\r\n \"fqdn\": \"psnrp9690.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9747pip\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/publicIPAddresses/psnrp9747pip\",\r\n \"etag\": \"W/\\\"7181ed6b-8030-4ee9-82a4-0d485c87a3ee\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"380b4867-0268-454d-a40d-9cd0d9abd6dd\",\r\n \"ipAddress\": \"13.78.173.231\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"psnrp9747\",\r\n \"fqdn\": \"psnrp9747.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp1519?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMTUxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourcegroups/psnrp2356?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlZ3JvdXBzL3BzbnJwMjM1Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "44af3fbf-7953-4644-9391-dde381bfa437" + "50a633ae-e8e3-463e-b9be-be45f923669a" ], "Accept-Language": [ "en-US" @@ -888,7 +1014,7 @@ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.108" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,13 +1038,13 @@ "11999" ], "x-ms-request-id": [ - "499eaf02-b4ce-4df7-bae6-bb2571439d54" + "dad81d49-ebe1-4b18-815d-178cb19c185a" ], "x-ms-correlation-request-id": [ - "499eaf02-b4ce-4df7-bae6-bb2571439d54" + "dad81d49-ebe1-4b18-815d-178cb19c185a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201334Z:499eaf02-b4ce-4df7-bae6-bb2571439d54" + "SOUTHEASTASIA:20250613T134725Z:dad81d49-ebe1-4b18-815d-178cb19c185a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,10 +1056,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 4C00F346C2FC4CBA9A4B76DAC431F0AF Ref B: MAA201060516029 Ref C: 2025-05-28T20:13:31Z" + "Ref A: 49FC1A535B674D53BC2452F3FAA7CDCC Ref B: MAA201060514035 Ref C: 2025-06-13T13:47:21Z" ], "Date": [ - "Wed, 28 May 2025 20:13:34 GMT" + "Fri, 13 Jun 2025 13:47:24 GMT" ], "Content-Length": [ "178" @@ -945,7 +1071,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp1519\",\r\n \"name\": \"psnrp1519\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp2356\",\r\n \"name\": \"psnrp2356\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -957,7 +1083,7 @@ "en-US" ], "x-ms-client-request-id": [ - "e7369700-90e8-4624-aba5-f51119ce7b87" + "3217a993-11bb-48cc-bb59-e8cecd816eea" ], "User-Agent": [ "FxVersion/8.0.1625.21506", @@ -975,54 +1101,44 @@ "no-cache" ], "x-ms-original-request-ids": [ - "b7f9b0ea-09cf-4aec-8eda-c3c0979b22c7", - "da8c7f07-5444-4e08-92cf-bbfa2dc0aaf2", - "0276f00d-cf2a-4314-ab20-8d9418480fb8", - "ad731550-3bfe-4c7f-be8f-34517b8e8499", - "0f78dedb-0592-4484-aeeb-68e653a7861f", - "7d4ba7a6-3779-4410-beb7-acedc12f0ca5", - "df58b6fe-f80f-4a5d-a64b-323edefe8ffb", - "e8b10f9c-408c-4cd6-922e-84d3efe3361f", - "197b93ef-6bd2-413c-ab90-fc0ca7e95c54", - "f2e95e15-e932-41df-82f6-93674b303f20", - "a11469d5-9ecd-4f72-bec7-721babbf498a", - "4f1a562f-5382-4ed4-acfe-97028fb3616e", - "d29cf70e-ef67-4e46-b01e-438b2878b0c8", - "9188d424-17ad-42f0-968a-25429b1c2090", - "fad8ca10-4343-407f-97b8-bd065ec5d484", - "d46115e6-05a4-4bc7-8b0b-2d112e08153b", - "dc7c36ea-16ec-46ec-983b-10fd4f8fc6ea", - "4a247cc6-cb70-4162-8e6f-1af408771200", - "313305f3-b70d-4b1f-9cca-bdc3889c8c8c", - "4626b998-2cbd-47e2-97ac-ee785d74ae83", - "b4f3c4ae-33a0-426b-899e-ebf5be8aecf1", - "b5824a1d-83ac-4177-b409-5bf31dabea34", - "549e2278-79e6-4f84-80ac-88ebb2a8f951", - "a2c95c20-5423-4c9b-8ff9-5412fb93f0da", - "ef8979df-fc14-41e6-a5e1-02de1283b687", - "896f91d6-140e-4cd1-8244-b11e795354f7", - "0bd6e2a9-0890-4457-b78e-f78869551d40", - "6a0ea75a-8642-4f07-a627-bd4a9c99a030", - "5e6af5ff-5721-4513-bc0e-2f2aab20bc2b", - "7babfeb5-5972-4c8f-8f41-aec716d3cc82", - "0d3e540c-0df0-4e64-92b0-651174a0e3da", - "c779cc6c-1fbe-4e51-91d7-6dc04b19f8f7", - "a9a1c6c8-a539-4ed7-947b-068aeafd1fd3", - "706db39b-25d9-43a9-9654-62d17e42b90e", - "80301a32-107f-41c8-a3d7-1ed29870b8b2", - "fda8ec44-55e6-46b7-b892-fd387f3a859c", - "271fc66d-6ee5-4986-ad84-5cc5e1cea391", - "fecf8f92-72c4-45c0-aed0-2918df7794d2", - "5b1c5566-abb3-4353-8dd3-5585f82f5d22", - "7c03cf18-6d82-4201-93c1-52d61dab4f81", - "280d8ddb-3451-43f7-88bc-ff28940b98b0", - "f0745d10-6636-47ea-ad5a-a811d9756d3d", - "6af32d4a-5dd3-4e5e-a324-5cc247965cc8", - "b1fc41d4-86e9-4ede-9bb3-908e0d59ed35", - "5273d39e-08e6-418b-8c60-8dc4dab73de1", - "facfce5d-656f-4e08-bf07-aa255b5fecb8", - "da01beb8-7bbf-4443-b0c8-0bbfe63b1132", - "f36fe192-6573-43e1-8bd8-b2a9f886c4ee" + "25e1e7d3-7eb2-4018-9050-4e0b039db799", + "3bb71caa-b53b-47bc-b136-2d2663b872f8", + "c9f15b2c-0113-4a30-aa7d-4029385c287b", + "199696d3-64db-4cd2-ba82-5e9e8c925ec6", + "f9371480-5494-46dc-9059-745f24544f60", + "4718c052-d8c7-41cf-b7a0-e3e20b590abc", + "7b700121-7f6b-4679-bdf8-64c084aedd39", + "dd257bde-550f-4db1-9084-18cca2b0c71a", + "e36e8ec0-68c7-40ac-94cc-df84f056f62b", + "b86a019a-488e-4ee9-bbab-22d0fef7c2b9", + "59f5d8cd-1b48-4253-9b40-755377f1865e", + "5938645e-9c04-4302-8d3b-b1ca5449b4b7", + "1bee1b2b-6034-4936-b1e8-24c392854f31", + "11dafe46-9d0e-4a25-802c-c8694188008d", + "30d747cf-c20c-4079-bacd-edc7a4437347", + "729212f7-ea62-4dff-8c3c-ba64314642aa", + "b1fa1962-56c7-498d-8da1-506cce06597f", + "945fbe1e-7324-451a-b70a-709bdba57cbd", + "a2249691-4ba2-49df-9bcd-1d13d7ea1978", + "b2f6a59d-882b-485b-8cbb-f6125d068577", + "6c6044ab-19db-4045-b7be-7eb001c09e12", + "bb5d49c7-55f8-4bf8-8bfd-67633703c188", + "21458a49-9dec-47e6-a2ef-3df1bdc95fc5", + "52b7e61e-f0c6-4c3c-b9b3-eab2737a7795", + "50b006a4-e0d2-4573-bcf8-51861e40d159", + "c8594682-4d83-4ecb-b703-cd39cb9c1aac", + "fea33158-94d9-4cc7-9b81-90e3a6dc6e1c", + "9d506895-3388-4c9f-800d-2a2d023d8e22", + "fb7e559f-81f9-4f6e-a11b-e66dc2f7a780", + "a919c390-f028-4065-95c5-bd8a4e6beac2", + "e9da4fbf-a02f-425a-8b38-67b5d20e4787", + "0b3bf26f-ad22-40be-a38a-8a6399f91115", + "05894805-e0de-446e-a1c7-eeabc429661c", + "bb6f3f4a-acd3-4b4b-ab06-b3294dcd0b54", + "c29a2408-7b40-4732-9827-9f1bb86bae7e", + "7556ab18-a684-4a80-9b00-70d614693a93", + "3ab86b10-c6ee-4206-9386-85aca62037b5", + "92a91d85-74fb-47b3-acf8-c93561d58306" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1031,13 +1147,13 @@ "16499" ], "x-ms-request-id": [ - "0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + "1c5d4c87-1bd1-480c-8450-852b197f5156" ], "x-ms-correlation-request-id": [ - "0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + "1c5d4c87-1bd1-480c-8450-852b197f5156" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T201337Z:0ceb94b2-fd1b-41b8-8f98-410ee579ff1a" + "SOUTHEASTASIA:20250613T134727Z:1c5d4c87-1bd1-480c-8450-852b197f5156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1049,10 +1165,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 3B69DAF30E36435094A67F6D1F41E32A Ref B: MAA201060514053 Ref C: 2025-05-28T20:13:35Z" + "Ref A: 3222EBD883284E41863676A4024B84B2 Ref B: MAA201060513025 Ref C: 2025-06-13T13:47:25Z" ], "Date": [ - "Wed, 28 May 2025 20:13:36 GMT" + "Fri, 13 Jun 2025 13:47:27 GMT" ], "Content-Length": [ "15020" @@ -1064,25 +1180,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"etag\": \"W/\\\"e67a5aa8-81d4-4444-9170-f112f68c66f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"etag\": \"W/\\\"89592e69-4ae4-46c1-b777-3540e4163329\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northeurope\",\r\n \"etag\": \"W/\\\"13b34e8d-b95d-4737-807c-1517cee35cc8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westeurope\",\r\n \"etag\": \"W/\\\"dd9e1390-57b6-45fc-a385-6f9a0e074696\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"etag\": \"W/\\\"5c3a6461-5444-47c0-8f6b-fe2284dde243\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"etag\": \"W/\\\"31777133-d580-4c4c-96b9-b6012b5bbf90\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northcentralus\",\r\n \"etag\": \"W/\\\"59f8d3a9-31c4-47fb-bef5-4723b2662867\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"etag\": \"W/\\\"d1e12d23-297c-4f9f-8e08-061cccc5d127\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"etag\": \"W/\\\"c03f3fd5-ca02-4455-9843-e4427137f401\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2\",\r\n \"etag\": \"W/\\\"da19f75c-4928-462b-aa64-b31ac106f314\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"etag\": \"W/\\\"a3e16e1c-9768-4ccb-ba0f-05dcce96cadb\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japanwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japanwest\",\r\n \"etag\": \"W/\\\"f9bb75bb-bf20-414b-a1dd-4ea06dd02ccc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_brazilsouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_brazilsouth\",\r\n \"etag\": \"W/\\\"d1a03a2c-7d63-42a3-87ca-d65b7c4a97ea\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"etag\": \"W/\\\"b462d356-2cc1-474d-8a0a-27b98495b6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiasoutheast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiasoutheast\",\r\n \"etag\": \"W/\\\"bbd4cfbc-b1c5-4549-95d2-13584ae9ae3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralindia\",\r\n \"etag\": \"W/\\\"cdcaef20-eb12-4b98-a5dd-8730da0a36bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"etag\": \"W/\\\"5e6a909b-0e0c-4d68-be5c-d549399041a2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westindia\",\r\n \"etag\": \"W/\\\"ed0588b3-183f-4faf-94fe-fa9435496ad2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadacentral\",\r\n \"etag\": \"W/\\\"24aab9fa-83f4-40bd-82f4-7b3eada35b8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadaeast\",\r\n \"etag\": \"W/\\\"3486bdf6-d813-4ff2-af78-4c3ab2772e30\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"etag\": \"W/\\\"36864961-07c1-4dc8-a73f-47c510edff84\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"etag\": \"W/\\\"dc48e8f9-192c-4f60-87f1-292ade2f93d8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_ukwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_ukwest\",\r\n \"etag\": \"W/\\\"f69e7214-3753-4057-ac94-69a899902d1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uksouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uksouth\",\r\n \"etag\": \"W/\\\"da992749-3796-44cc-9524-6b45fd2ea59c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreacentral\",\r\n \"etag\": \"W/\\\"6a93f140-b5b0-48fa-bfc7-055ae84fbe79\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreasouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreasouth\",\r\n \"etag\": \"W/\\\"5528758d-6da0-4500-8880-fa6fe24a416c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_francecentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\r\n \"etag\": \"W/\\\"818ef172-a7f6-47f8-b1df-c4d1278a8f22\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiacentral\",\r\n \"etag\": \"W/\\\"3027f468-b23d-461e-be51-4983eb572075\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southafricanorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southafricanorth\",\r\n \"etag\": \"W/\\\"7db800bc-d396-4e66-82f9-2d33b93a44fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uaenorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uaenorth\",\r\n \"etag\": \"W/\\\"877eb249-879d-4fec-8d35-45a7cd977c70\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uaenorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_switzerlandnorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_switzerlandnorth\",\r\n \"etag\": \"W/\\\"68e092a2-e51e-4c87-84bd-eefe88a2d984\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_germanywestcentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_germanywestcentral\",\r\n \"etag\": \"W/\\\"42741b21-cb03-42ba-b5ee-3fa8ce960db5\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_norwayeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_norwayeast\",\r\n \"etag\": \"W/\\\"f959b133-6d43-4101-a03a-5ee267b2e514\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"norwayeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus3\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus3\",\r\n \"etag\": \"W/\\\"7f5ec053-af0e-43bd-a714-70d6e95619a4\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_jioindiawest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_jioindiawest\",\r\n \"etag\": \"W/\\\"4923d16c-ac54-4e75-9f6c-da0a10b0b2a7\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"jioindiawest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_swedencentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_swedencentral\",\r\n \"etag\": \"W/\\\"7d4f1a40-ae1b-4e04-b6e9-9fda2d206b3a\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"swedencentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centraluseuap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centraluseuap\",\r\n \"etag\": \"W/\\\"094c3288-7767-4fb0-bf6d-4d50b445adbf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2euap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap\",\r\n \"etag\": \"W/\\\"16bad77f-268e-4c75-978d-5f96e651d148\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"etag\": \"W/\\\"e67a5aa8-81d4-4444-9170-f112f68c66f0\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"etag\": \"W/\\\"89592e69-4ae4-46c1-b777-3540e4163329\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northeurope\",\r\n \"etag\": \"W/\\\"13b34e8d-b95d-4737-807c-1517cee35cc8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westeurope\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westeurope\",\r\n \"etag\": \"W/\\\"dd9e1390-57b6-45fc-a385-6f9a0e074696\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"etag\": \"W/\\\"5c3a6461-5444-47c0-8f6b-fe2284dde243\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"etag\": \"W/\\\"31777133-d580-4c4c-96b9-b6012b5bbf90\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_northcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_northcentralus\",\r\n \"etag\": \"W/\\\"59f8d3a9-31c4-47fb-bef5-4723b2662867\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"etag\": \"W/\\\"d1e12d23-297c-4f9f-8e08-061cccc5d127\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"etag\": \"W/\\\"c03f3fd5-ca02-4455-9843-e4427137f401\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2\",\r\n \"etag\": \"W/\\\"da19f75c-4928-462b-aa64-b31ac106f314\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"etag\": \"W/\\\"a3e16e1c-9768-4ccb-ba0f-05dcce96cadb\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_japanwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japanwest\",\r\n \"etag\": \"W/\\\"f9bb75bb-bf20-414b-a1dd-4ea06dd02ccc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_brazilsouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_brazilsouth\",\r\n \"etag\": \"W/\\\"d1a03a2c-7d63-42a3-87ca-d65b7c4a97ea\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"etag\": \"W/\\\"b462d356-2cc1-474d-8a0a-27b98495b6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiasoutheast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiasoutheast\",\r\n \"etag\": \"W/\\\"bbd4cfbc-b1c5-4549-95d2-13584ae9ae3b\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centralindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralindia\",\r\n \"etag\": \"W/\\\"cdcaef20-eb12-4b98-a5dd-8730da0a36bf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"etag\": \"W/\\\"5e6a909b-0e0c-4d68-be5c-d549399041a2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westindia\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westindia\",\r\n \"etag\": \"W/\\\"ed0588b3-183f-4faf-94fe-fa9435496ad2\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadacentral\",\r\n \"etag\": \"W/\\\"24aab9fa-83f4-40bd-82f4-7b3eada35b8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_canadaeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_canadaeast\",\r\n \"etag\": \"W/\\\"3486bdf6-d813-4ff2-af78-4c3ab2772e30\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"etag\": \"W/\\\"53291f81-6dc1-4cd2-a8f3-9b51a2b6b57d\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"etag\": \"W/\\\"dc48e8f9-192c-4f60-87f1-292ade2f93d8\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_ukwest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_ukwest\",\r\n \"etag\": \"W/\\\"f69e7214-3753-4057-ac94-69a899902d1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uksouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uksouth\",\r\n \"etag\": \"W/\\\"da992749-3796-44cc-9524-6b45fd2ea59c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreacentral\",\r\n \"etag\": \"W/\\\"6a93f140-b5b0-48fa-bfc7-055ae84fbe79\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_koreasouth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_koreasouth\",\r\n \"etag\": \"W/\\\"5528758d-6da0-4500-8880-fa6fe24a416c\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_francecentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\r\n \"etag\": \"W/\\\"818ef172-a7f6-47f8-b1df-c4d1278a8f22\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_australiacentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiacentral\",\r\n \"etag\": \"W/\\\"3027f468-b23d-461e-be51-4983eb572075\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_southafricanorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southafricanorth\",\r\n \"etag\": \"W/\\\"7db800bc-d396-4e66-82f9-2d33b93a44fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_uaenorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_uaenorth\",\r\n \"etag\": \"W/\\\"877eb249-879d-4fec-8d35-45a7cd977c70\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"uaenorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_switzerlandnorth\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_switzerlandnorth\",\r\n \"etag\": \"W/\\\"68e092a2-e51e-4c87-84bd-eefe88a2d984\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_germanywestcentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_germanywestcentral\",\r\n \"etag\": \"W/\\\"42741b21-cb03-42ba-b5ee-3fa8ce960db5\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_norwayeast\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_norwayeast\",\r\n \"etag\": \"W/\\\"f959b133-6d43-4101-a03a-5ee267b2e514\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"norwayeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_westus3\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus3\",\r\n \"etag\": \"W/\\\"7f5ec053-af0e-43bd-a714-70d6e95619a4\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_jioindiawest\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_jioindiawest\",\r\n \"etag\": \"W/\\\"4923d16c-ac54-4e75-9f6c-da0a10b0b2a7\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"jioindiawest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_swedencentral\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_swedencentral\",\r\n \"etag\": \"W/\\\"7d4f1a40-ae1b-4e04-b6e9-9fda2d206b3a\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"swedencentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_centraluseuap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centraluseuap\",\r\n \"etag\": \"W/\\\"094c3288-7767-4fb0-bf6d-4d50b445adbf\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n },\r\n {\r\n \"name\": \"NetworkWatcher_eastus2euap\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus2euap\",\r\n \"etag\": \"W/\\\"ebdc523d-7b1b-454f-a311-1e8308d2e477\\\"\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"TagAuthor\": \"vihanda\",\r\n \"TestTag1\": \"TestValue1\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"runningOperationIds\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "5788d486-7c06-4fc4-94ef-0a1b8d356086" + "d516d122-c4f8-44e8-af75-5a9d2cb664a9" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1094,7 +1210,7 @@ "no-cache" ], "ETag": [ - "\"4\"" + "\"3\"" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;34" @@ -1106,7 +1222,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5def6ec0-3708-4e27-ba10-b7bbcbdd1588" + "b7b7b743-eae6-4e77-86cd-76f1af723454" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1115,10 +1231,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "9ac9c871-8ac9-49af-9ae8-d5810252674b" + "5c23379b-5047-4211-a506-add7d2db494b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202338Z:9ac9c871-8ac9-49af-9ae8-d5810252674b" + "SOUTHEASTASIA:20250613T135729Z:5c23379b-5047-4211-a506-add7d2db494b" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,13 +1243,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: ACF6FC783F8A4B39B181A3E1DBC3223C Ref B: MAA201060515021 Ref C: 2025-05-28T20:23:38Z" + "Ref A: 93D865A40C6048BCADB1C01249E680CF Ref B: MAA201060514047 Ref C: 2025-06-13T13:57:28Z" ], "Date": [ - "Wed, 28 May 2025 20:23:37 GMT" + "Fri, 13 Jun 2025 13:57:29 GMT" ], "Content-Length": [ - "4646" + "4204" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1142,22 +1258,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:45:51.4270549+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp9747\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9747\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:18:13.3279847+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"d8dfeac5-1a13-447a-b1a5-81511e17550c\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-06-13T19:12:52.0625007+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + "e2525094-05dc-4d51-803b-244db0a79211" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1169,10 +1285,10 @@ "no-cache" ], "ETag": [ - "\"5\"" + "\"4\"" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;30" + "Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;35" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -1181,7 +1297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78b02f3d-a3f3-490a-9526-fd1d01599f5e" + "d3ba38ed-3a23-48c9-8749-cb5d4be79a9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1190,10 +1306,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "930dae8b-d860-4fb6-b01b-869cd8765169" + "6d7863c6-569f-48a0-ac8f-ba2a1599c712" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202400Z:930dae8b-d860-4fb6-b01b-869cd8765169" + "SOUTHEASTASIA:20250613T135752Z:6d7863c6-569f-48a0-ac8f-ba2a1599c712" ], "X-Content-Type-Options": [ "nosniff" @@ -1202,13 +1318,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: FBC046A02A8D47FBA8C814F4B1738AD1 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:59Z" + "Ref A: 67426B6F35BE4A16BB3EE8F9798366F8 Ref B: MAA201060514049 Ref C: 2025-06-13T13:57:52Z" ], "Date": [ - "Wed, 28 May 2025 20:24:00 GMT" + "Fri, 13 Jun 2025 13:57:52 GMT" ], "Content-Length": [ - "5165" + "4676" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1217,34 +1333,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:53:48.2026955+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp9747\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9747\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:27:40.9059444+05:30\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"d8dfeac5-1a13-447a-b1a5-81511e17550c\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-06-13T19:12:52.0625007+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTA/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3P2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", "RequestMethod": "PUT", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + "e2525094-05dc-4d51-803b-244db0a79211" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5103" + "4654" ] }, - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\",\r\n \"diskSizeGB\": 127,\r\n \"osType\": \"Windows\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"settings\": {},\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"settings\": {},\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"singlePlacementGroup\": true,\r\n \"platformFaultDomainCount\": 1,\r\n \"orchestrationMode\": \"Uniform\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9747\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\",\r\n \"diskSizeGB\": 127,\r\n \"osType\": \"Windows\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"settings\": {},\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": []\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"singlePlacementGroup\": true,\r\n \"platformFaultDomainCount\": 1,\r\n \"orchestrationMode\": \"Uniform\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {}\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1253,13 +1369,13 @@ "no-cache" ], "ETag": [ - "\"5\"" + "\"4\"" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606287084302&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=p-Ci6-r8Mwn_gdh2daHvDiLdT92zpKcJKLGfryEBNrcxMjgSjgAy_0fHPxNsg_8aveIv6Ecz0G_rrcqIRCdZ_41q2OQkYm8Oq0LAuMihaOPAUrKK_ShRsBxjN4RH_WVfWT8sGVLxSLq8jCnwlMe2xmoA38dEKWHMzQ7VqFc_EQt_RwKAtf2BAtU2_f_YjeFdh-lqSfPJ-X6wAjR8WtjPywJr1w1e3DA118_iePfQib8mmy0siRX_BKe-bdOuzdLWAB9TEbhpJIOsTvecboSOCHsoc6bJYfis6tuoBkTgVgiIIDzzAtBMsdT8cShLpn1sTjIgbQKKOVF4etV-HT5a3A&h=Afx4qNaZBshsYhDJOtjdMQII0nXKi8sTS1qNgsvDH6U" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/19b1281d-def8-479c-b262-47f3728f0997?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854198615332331&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=MSWjNvWrxIfiJU0dsnYboUn_m5Zy19g3IdxQtqtRVtYmfEfsj-xObbnFz8d057PvXbYj6kJB8BMuPobgVo1tJtfc_B06La14bNC6oH3gfGxAkdD5CpQ3hrEjVIEo4v7zHy_7rkP1l4_bQkw5vie4488LuR-l6MMSPzAaOvsufsXI_3WCZdZM4bHUc5gPT9fmZCpWMcYI6pvEBC3ppGNMMtQ-FuL4gKb-OxPlskfVMyqjKtq1o8SZnfwwETua87q6q-TjkU-xltsmg9S7L6B7bzDfMsqX4ujw1pvD-ACreYauPSdpfGNZlASyl_7HfeRq53NLLomkDQgg1K74Fn9UHg&h=8Wpf9IcS8fu-uZ8KVAZQ6vZMAyGWhFL75ns1B3aekco" ], "azure-asyncnotification": [ "Enabled" @@ -1277,10 +1393,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a" + "19b1281d-def8-479c-b262-47f3728f0997" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/4ba6ca72-2f45-4ff5-8b4d-4047405db921" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/f266c064-72b9-44e1-8574-37d16cb5dc57" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" @@ -1289,10 +1405,10 @@ "12000" ], "x-ms-correlation-request-id": [ - "4082d6fe-07cf-4fdc-8fe3-048fb257ad50" + "0b0b4d43-d24f-4a9d-b3a1-3b08d5af5701" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202348Z:4082d6fe-07cf-4fdc-8fe3-048fb257ad50" + "SOUTHEASTASIA:20250613T135741Z:0b0b4d43-d24f-4a9d-b3a1-3b08d5af5701" ], "X-Content-Type-Options": [ "nosniff" @@ -1301,13 +1417,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 1920E9869F7242E289FEAC08B1A57CA9 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:40Z" + "Ref A: 6B4ADA9C67714505B825FEF67F1BC902 Ref B: MAA201060514049 Ref C: 2025-06-13T13:57:30Z" ], "Date": [ - "Wed, 28 May 2025 20:23:48 GMT" + "Fri, 13 Jun 2025 13:57:41 GMT" ], "Content-Length": [ - "5164" + "4675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1316,22 +1432,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp9690\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"5\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9690\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"CodeIntegrityAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.WindowsCodeIntegrity\",\r\n \"type\": \"CodeIntegrityAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:53:48.2026955+05:30\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"97b4c550-d439-4f9c-896a-bf3798cf329b\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-05-29T01:39:58.6030097+05:30\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp9747\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"psnrp9747\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n },\r\n {\r\n \"name\": \"AzureNetworkWatcherExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisionAfterExtensions\": [],\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\",\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:27:40.9059444+05:30\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"d8dfeac5-1a13-447a-b1a5-81511e17550c\",\r\n \"platformFaultDomainCount\": 1,\r\n \"timeCreated\": \"2025-06-13T19:12:52.0625007+05:30\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606287084302&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=p-Ci6-r8Mwn_gdh2daHvDiLdT92zpKcJKLGfryEBNrcxMjgSjgAy_0fHPxNsg_8aveIv6Ecz0G_rrcqIRCdZ_41q2OQkYm8Oq0LAuMihaOPAUrKK_ShRsBxjN4RH_WVfWT8sGVLxSLq8jCnwlMe2xmoA38dEKWHMzQ7VqFc_EQt_RwKAtf2BAtU2_f_YjeFdh-lqSfPJ-X6wAjR8WtjPywJr1w1e3DA118_iePfQib8mmy0siRX_BKe-bdOuzdLWAB9TEbhpJIOsTvecboSOCHsoc6bJYfis6tuoBkTgVgiIIDzzAtBMsdT8cShLpn1sTjIgbQKKOVF4etV-HT5a3A&h=Afx4qNaZBshsYhDJOtjdMQII0nXKi8sTS1qNgsvDH6U", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzEwOWNiYmYxLTYwY2MtNGJmMS1iMjBkLTNiNGRkMGZlYTM3YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2Mjg3MDg0MzAyJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXAtQ2k2LXI4TXduX2dkaDJkYUh2RGlMZFQ5MnpwS2NKS0xHZnJ5RUJOcmN4TWpnU2pnQXlfMGZIUHhOc2dfOGF2ZUl2NkVjejBHX3JyY3FJUkNkWl80MXEyT1FrWW04T3EwTEF1TWloYU9QQVVyS0tfU2hSc0J4ak40UkhfV1ZmV1Q4c0dWTHhTTHE4akNud2xNZTJ4bW9BMzhkRUtXSE16UTdWcUZjX0VRdF9Sd0tBdGYyQkF0VTJfZl9ZamVGZGgtbHFTZlBKLVg2d0FqUjhXdGpQeXdKcjF3MWUzREExMThfaWVQZlFpYjhtbXkwc2lSWF9CS2UtYmRPdXpkTFdBQjlURWJocEpJT3NUdmVjYm9TT0NIc29jNmJKWWZpczZ0dW9Ca1RnVmdpSUlEenpBdEJNc2RUOGNTaExwbjFzVGpJZ2JRS0tPVkY0ZXRWLUhUNWEzQSZoPUFmeDRxTmFaQnNoc1loREpPdGpkTVFJSTBuWEtpOHNUUzFxTmdzdkRINlU=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/19b1281d-def8-479c-b262-47f3728f0997?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854198615332331&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=MSWjNvWrxIfiJU0dsnYboUn_m5Zy19g3IdxQtqtRVtYmfEfsj-xObbnFz8d057PvXbYj6kJB8BMuPobgVo1tJtfc_B06La14bNC6oH3gfGxAkdD5CpQ3hrEjVIEo4v7zHy_7rkP1l4_bQkw5vie4488LuR-l6MMSPzAaOvsufsXI_3WCZdZM4bHUc5gPT9fmZCpWMcYI6pvEBC3ppGNMMtQ-FuL4gKb-OxPlskfVMyqjKtq1o8SZnfwwETua87q6q-TjkU-xltsmg9S7L6B7bzDfMsqX4ujw1pvD-ACreYauPSdpfGNZlASyl_7HfeRq53NLLomkDQgg1K74Fn9UHg&h=8Wpf9IcS8fu-uZ8KVAZQ6vZMAyGWhFL75ns1B3aekco", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE5YjEyODFkLWRlZjgtNDc5Yy1iMjYyLTQ3ZjM3MjhmMDk5Nz9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MTk4NjE1MzMyMzMxJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPU1TV2pOdldyeElmaUpVMGRzbllib1VuX201WnkxOWczSWR4UXRxdFJWdFltZkVmc2oteE9iYm5GejhkMDU3UHZYYllqNmtKQjhCTXVQb2JnVm8xdEp0ZmNfQjA2TGExNGJOQzZvSDNnZkd4QWtkRDVDcFEzaHJFalZJRW80djd6SHlfN3JrUDFsNF9iUWt3NXZpZTQ0ODhMdVItbDZNTVNQekFhT3ZzdWZzWElfM1dDWmRaTTRiSFVjNWdQVDlmbVpDcFdNY1lJNnB2RUJDM3BwR05NTXRRLUZ1TDRnS2ItT3hQbHNrZlZNeXFqS3RxMW84U1puZnd3RVR1YTg3cTZxLVRqa1UteGx0c21nOVM3TDZCN2J6RGZNc3FYNHVqdzFwdkQtQUNyZVlhdVBTZHBmR05abEFTeWxfN0hmZVJxNTNOTExvbWtEUWdnMUs3NEZuOVVIZyZoPThXcGY5SWNTOGZ1LXVaOEtWQVpRNnZaTUF5R1doRkw3NW5zMUIzYWVrY28=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1b8ed533-d94d-4d79-b76e-eeda32b273a2" + "e2525094-05dc-4d51-803b-244db0a79211" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1352,10 +1468,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2564429a-1e09-4768-8fc8-17da04fe4fa3" + "6f9cce28-e64f-4602-a114-f7454348c757" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/c47bc08c-6a2a-4949-9020-6b5b511d7ebd" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/9ae3066d-7729-4353-8efb-656abb0514bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1364,10 +1480,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "e8ba8555-4aeb-41d8-96ab-5e1d992b2d8a" + "7cae4713-b220-4bf4-b667-20c82b61adfb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202359Z:e8ba8555-4aeb-41d8-96ab-5e1d992b2d8a" + "SOUTHEASTASIA:20250613T135752Z:7cae4713-b220-4bf4-b667-20c82b61adfb" ], "X-Content-Type-Options": [ "nosniff" @@ -1376,10 +1492,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 2587DD36404F428D8ADC74836718A354 Ref B: MAA201060515039 Ref C: 2025-05-28T20:23:59Z" + "Ref A: 94CEDE6B4F3C44B381478188036714D9 Ref B: MAA201060514049 Ref C: 2025-06-13T13:57:51Z" ], "Date": [ - "Wed, 28 May 2025 20:23:59 GMT" + "Fri, 13 Jun 2025 13:57:51 GMT" ], "Content-Length": [ "184" @@ -1391,25 +1507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:53:48.1870423+05:30\",\r\n \"endTime\": \"2025-05-29T01:53:48.6870355+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"109cbbf1-60cc-4bf1-b20d-3b4dd0fea37a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:27:40.8903096+05:30\",\r\n \"endTime\": \"2025-06-13T19:27:41.4371849+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19b1281d-def8-479c-b262-47f3728f0997\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvdmlydHVhbE1hY2hpbmVzP2FwaS12ZXJzaW9uPTIwMjQtMTEtMDE=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3L3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDI0LTExLTAx", "RequestMethod": "GET", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "a58fe512-ddad-46ac-bdb6-7c3dd54b9642" + "5c1cea92-6a80-417a-91cf-b55fb4a9b85f" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1433,10 +1549,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "edf15848-9d93-4c36-a124-8f2b2d33385d" + "b159e259-b9a5-497a-ba7b-5caee0c583be" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/91b228cf-ade5-488b-a86e-4175a4fc9e72" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/58712385-2f76-4f15-bc6d-850ffacf81b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1445,10 +1561,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "0a0c2d79-e5ed-456d-a6ad-d6b43368592a" + "9ac18228-787b-4033-a7b5-81bdd9eb91b5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202405Z:0a0c2d79-e5ed-456d-a6ad-d6b43368592a" + "SOUTHEASTASIA:20250613T135754Z:9ac18228-787b-4033-a7b5-81bdd9eb91b5" ], "X-Content-Type-Options": [ "nosniff" @@ -1457,13 +1573,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: E9DBFBFDE130425EAFE869DE49E9874F Ref B: MAA201060515019 Ref C: 2025-05-28T20:24:03Z" + "Ref A: B3E2A5CAD32B44098055DBE75BB9901E Ref B: MAA201060513025 Ref C: 2025-06-13T13:57:53Z" ], "Date": [ - "Wed, 28 May 2025 20:24:04 GMT" + "Fri, 13 Jun 2025 13:57:53 GMT" ], "Content-Length": [ - "16663" + "16687" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1472,25 +1588,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9690_0\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/0\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"287b5edd-a72e-4e15-9522-238f529870a0\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_0_OsDisk_1_5df462e08ad44d8886caccb0368f88f5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_0_OsDisk_1_5df462e08ad44d8886caccb0368f88f5\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000000\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/0/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_0/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_0/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9690_1\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"d3c24b40-fbfa-483f-9799-307818e3a184\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_1_OsDisk_1_df03ad8265384a5fb9cc35768cd80a8e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_1_OsDisk_1_df03ad8265384a5fb9cc35768cd80a8e\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000001\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/1/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_1/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9690_2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9690ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/virtualNetworks/psnrp9690vnet/subnets/psnrp9690subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/backendAddressPools/psnrp9690bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Network/loadBalancers/psnrp9690lb/inboundNatPools/psnrp9690natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"fe438a57-4df7-41ef-a20b-01f6f530d677\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7322.250524\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9690_psnrp9690_2_OsDisk_1_9b6bbd4f2f0c492eb91f116fd240727a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/disks/psnrp9690_psnrp9690_2_OsDisk_1_9b6bbd4f2f0c492eb91f116fd240727a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9690000002\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/virtualMachines/2/networkInterfaces/psnrp9690nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-05-29T01:39:58.8061285+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_2/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachines/psnrp9690_2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"psnrp9747_0\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/0\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"4aca1fa0-3bbf-4434-909d-81550e63fa34\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7434.250605\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9747_psnrp9747_0_OsDisk_1_f18bf89886ed465e8e13d8e179d75802\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/disks/psnrp9747_psnrp9747_0_OsDisk_1_f18bf89886ed465e8e13d8e179d75802\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9747000000\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/0/networkInterfaces/psnrp9747nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:12:52.1250001+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_0/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_0/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9747_1\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"d7b8ffa9-67fa-4c2e-b038-602eb0edfd57\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7434.250605\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9747_psnrp9747_1_OsDisk_1_c7b07a87f2fd40df9733d98e09aa5a16\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/disks/psnrp9747_psnrp9747_1_OsDisk_1_c7b07a87f2fd40df9733d98e09aa5a16\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9747000001\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/1/networkInterfaces/psnrp9747nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:12:52.1250001+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_1/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"psnrp9747_2\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westcentralus\": {\r\n \"principalId\": \"e3c5d40b-2413-446c-8f0a-2c2041da34a8\",\r\n \"clientId\": \"5cfe7a27-d5cf-480b-8c9c-93ec7c194ceb\"\r\n }\r\n }\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747nic\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"disableTcpStateTracking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"psnrp9747ipconfig\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/virtualNetworks/psnrp9747vnet/subnets/psnrp9747subnet\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/backendAddressPools/psnrp9747bepool\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Network/loadBalancers/psnrp9747lb/inboundNatPools/psnrp9747natpool\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4s_v3\"\r\n },\r\n \"resilientVMDeletionStatus\": \"Disabled\",\r\n \"vmId\": \"ff014c2a-937d-4cb7-aecb-b9bde5cc91b8\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.7434.250605\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"psnrp9747_psnrp9747_2_OsDisk_1_d88189f1f1024597bd2acb5de66278ab\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/disks/psnrp9747_psnrp9747_2_OsDisk_1_d88189f1f1024597bd2acb5de66278ab\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"psnrp9747000002\",\r\n \"adminUsername\": \"netanaytics12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/virtualMachines/2/networkInterfaces/psnrp9747nic\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-06-13T19:12:52.1250001+05:30\"\r\n },\r\n \"etag\": \"\\\"1\\\"\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_2/extensions/Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachines/psnrp9747_2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3L21hbnVhbHVwZ3JhZGU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + "82585fef-7915-4cb5-af00-562c8ee4c31c" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,10 +1624,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/d6278e79-d4ab-4a06-9925-62203abc339f?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854198762214991&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jJnp74XQr5RlCh9ilIxtMDVENUrTGqVaWm7U0Zt9wjZYO2cdoCJRC2KViNqIS54jjighJOPd203JuJExn1mqJRYieucJE4mLXe-WF2p2QJteCfywe4_BjJUue5I-Y-AEHDN85LIlRLEr8RQfZ6ZaISRcDiNwaB6SDRjw_z3HUJ8cj8lmLJkrACI-GaG5HZAyOAshko3VW8mQ3cvW7S8GrOeJIYBrvyRoFceLGp6f9-REYMNxXBm8EEVNuvaTPerpDzAWNeU26thuw56x5JKSxcrGPZc-vGlnT-Wfk6oQZ7h0Fi0nBo1E-_d0TDM3_XDy45bMXzbS-19b34lpwgi8Qw&h=qkv1Jx_70SrDWE43D_NXFEDpfDbFRnSBq5EpzKpTedg" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/d6278e79-d4ab-4a06-9925-62203abc339f?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854198762214991&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jJnp74XQr5RlCh9ilIxtMDVENUrTGqVaWm7U0Zt9wjZYO2cdoCJRC2KViNqIS54jjighJOPd203JuJExn1mqJRYieucJE4mLXe-WF2p2QJteCfywe4_BjJUue5I-Y-AEHDN85LIlRLEr8RQfZ6ZaISRcDiNwaB6SDRjw_z3HUJ8cj8lmLJkrACI-GaG5HZAyOAshko3VW8mQ3cvW7S8GrOeJIYBrvyRoFceLGp6f9-REYMNxXBm8EEVNuvaTPerpDzAWNeU26thuw56x5JKSxcrGPZc-vGlnT-Wfk6oQZ7h0Fi0nBo1E-_d0TDM3_XDy45bMXzbS-19b34lpwgi8Qw&h=qkv1Jx_70SrDWE43D_NXFEDpfDbFRnSBq5EpzKpTedg" ], "azure-asyncnotification": [ "Enabled" @@ -1529,10 +1645,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9254c947-377b-42b8-b179-a711433760ba" + "d6278e79-d4ab-4a06-9925-62203abc339f" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/5f6ac59a-1870-4fd6-8661-a80e9a6531aa" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/40c3d557-7193-40e6-a258-6d399250acb5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" @@ -1541,10 +1657,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "7d86e647-ae08-4cbe-a986-e1c069871a4f" + "4044193f-abb0-4222-b68d-1deda324c769" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202408Z:7d86e647-ae08-4cbe-a986-e1c069871a4f" + "SOUTHEASTASIA:20250613T135756Z:4044193f-abb0-4222-b68d-1deda324c769" ], "X-Content-Type-Options": [ "nosniff" @@ -1553,10 +1669,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 96455A7863934D60A112B83E86E28DB8 Ref B: MAA201060515017 Ref C: 2025-05-28T20:24:06Z" + "Ref A: 90AFE56919344BE28016C125D04E72BA Ref B: MAA201060514045 Ref C: 2025-06-13T13:57:55Z" ], "Date": [ - "Wed, 28 May 2025 20:24:07 GMT" + "Fri, 13 Jun 2025 13:57:55 GMT" ], "Expires": [ "-1" @@ -1569,21 +1685,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3L21hbnVhbHVwZ3JhZGU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "7a575816-86ee-407e-a333-5c2cbb2cbded" + "edacd2e5-1a89-422c-86b2-2d086ef2e737" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1601,10 +1717,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2d61e63b-35a4-4a1c-a987-9dc7545950c1?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854199404526245&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=pN7mOHNqlD0N_eNusYkXOXS6xqxLG0MSex5A6UR0T4bA75pf7MkUKGRvaoTaCJHViL4gFBZx7CMtHs0lcneEwhsbNVkZqqR1khtTkhwlE2NTcYugtIUuz0Z0mMm-2AGKphEmizNfXjWTRf2TInKbC61f5zTrkey69Ci7f2kFsWE5GlVcQ4ZGnbNKPXq9Er8WjlcXxHUSBq72fg884ZruyB6_Q-ecaTexrJcX7Od2z9aNzSxm08Y8SRZ7-kH9qFTieyysxsvF5DUoMKKhcpbpgt6ni46iADcjT01Nrq561jItYIJb9m1yg8po5vAgaECEY-bxTE_gcJoeq0zt5WcM0w&h=sQNuQQKdoxDjJjgYbbUc78bOk0-_1yE1EoWfiBIarvk" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2d61e63b-35a4-4a1c-a987-9dc7545950c1?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854199404526245&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=pN7mOHNqlD0N_eNusYkXOXS6xqxLG0MSex5A6UR0T4bA75pf7MkUKGRvaoTaCJHViL4gFBZx7CMtHs0lcneEwhsbNVkZqqR1khtTkhwlE2NTcYugtIUuz0Z0mMm-2AGKphEmizNfXjWTRf2TInKbC61f5zTrkey69Ci7f2kFsWE5GlVcQ4ZGnbNKPXq9Er8WjlcXxHUSBq72fg884ZruyB6_Q-ecaTexrJcX7Od2z9aNzSxm08Y8SRZ7-kH9qFTieyysxsvF5DUoMKKhcpbpgt6ni46iADcjT01Nrq561jItYIJb9m1yg8po5vAgaECEY-bxTE_gcJoeq0zt5WcM0w&h=sQNuQQKdoxDjJjgYbbUc78bOk0-_1yE1EoWfiBIarvk" ], "azure-asyncnotification": [ "Enabled" @@ -1622,10 +1738,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5129d3a-9b04-43ee-a652-67d36722bc20" + "2d61e63b-35a4-4a1c-a987-9dc7545950c1" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/c3c37aa2-f191-4564-a355-d508a659eb73" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/cd62f43f-910d-43ed-af29-5dd0fb74efc1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" @@ -1634,10 +1750,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "e9863095-1e9a-47a0-a17d-b339367aac33" + "e69f6144-00db-4b23-9f4b-808dfca3b808" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202512Z:e9863095-1e9a-47a0-a17d-b339367aac33" + "SOUTHEASTASIA:20250613T135900Z:e69f6144-00db-4b23-9f4b-808dfca3b808" ], "X-Content-Type-Options": [ "nosniff" @@ -1646,10 +1762,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: CEFD4E8EEC2B4BBCB55BC5F95E97506B Ref B: MAA201060516049 Ref C: 2025-05-28T20:25:10Z" + "Ref A: E8731364F48247448348544B071C482F Ref B: MAA201060513049 Ref C: 2025-06-13T13:58:58Z" ], "Date": [ - "Wed, 28 May 2025 20:25:11 GMT" + "Fri, 13 Jun 2025 13:59:00 GMT" ], "Expires": [ "-1" @@ -1662,21 +1778,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690/manualupgrade?api-version=2024-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwNjQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZVNjYWxlU2V0cy9wc25ycDk2OTAvbWFudWFsdXBncmFkZT9hcGktdmVyc2lvbj0yMDI0LTExLTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747/manualupgrade?api-version=2024-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL3BzbnJwMzAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvcHNucnA5NzQ3L21hbnVhbHVwZ3JhZGU/YXBpLXZlcnNpb249MjAyNC0xMS0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "Accept-Language": [ "en-US" ], "x-ms-client-request-id": [ - "510132d9-2d89-448d-ac09-065864562367" + "65583a25-122e-4402-9b7c-55ce6b6205d3" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1694,10 +1810,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/89cc060f-6596-427d-a088-88c18262e490?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854200032956990&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=sUpsNp6e9Ikdz0wVLSbP3W1L2LdKbM3rMeeY5AXrz1RsXAOwhbC1CpFQT7Q8lkjrwswwoDnleZvkSSLLA9HUi3BCzdsP0oonhqguEs_Jxo33RIg9AGi0509I5ItGhSFekTrRiSrE2Fje5zzOsN3RIaFgLHZllRW3DrhnvZaUumubKssCNy7BOtw_3Zpz_g2VB2Ya9-5r9nB76UYWk3JsfIi6pLMxjnmBL1YZ1ePAX9Rlj8SSBH7jg4zoKtjAta1QlmKyWH6HSFfNgwrKb7l9s0vYy0ZuUqkMLYUtIiBuCjoEOdLJshcJpcPsAmkS8QOH4acgpQcwp6KVAIutOQTKSA&h=-ikZpputKtXmOUFCvoxl4zWJMgvxYUAyT7TNObifQY4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/89cc060f-6596-427d-a088-88c18262e490?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854200032800710&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YtzZ85USlKfZTL-xAafpt4w9Ji_E_3Eg2soivPb9Ppt4gFGhQ_AsTq3Hgo5sobnKlkZ37YFatcS0tC7kGXMHVf3xRYUCA-wsSlSVMNv4ga5Q3ke5tEQU2u21QFr-ptXDwaoP1bZupQBmiJYH63VlETd3QYDnOzHh6NKC8sb5S5xOKFVFJbutQPSNvlVRz3ehBC2_EjtShyrVmfYyYo9nOb4-nOo8rFiXx_Eidt9L--HbvOseoRzaeTi1XWIaV8TTEnDB6MetyuycJnT64vWcg4T7u3xMkf9Qu8E_3Up5Uyj34ssjombXawjUJoQI8gu33dXQzzZExgjP9cXHFYW3rg&h=Cs6OkAd0TqmcbTX090jFUOpj2AGQmXknwOynk9SVxpg" ], "azure-asyncnotification": [ "Enabled" @@ -1715,10 +1831,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f2f5aa3-aa92-408b-bb62-06de4052ec5a" + "89cc060f-6596-427d-a088-88c18262e490" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/38d1b301-1c05-472a-8caf-412360bdb48f" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/74d633b3-acc8-4c32-9166-c38f44a83b64" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" @@ -1727,10 +1843,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "0bc011a9-f1e5-4c49-9d46-28b04b22f846" + "0320a589-c8a2-4c10-816e-8d799b24aba1" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202621Z:0bc011a9-f1e5-4c49-9d46-28b04b22f846" + "SOUTHEASTASIA:20250613T140003Z:0320a589-c8a2-4c10-816e-8d799b24aba1" ], "X-Content-Type-Options": [ "nosniff" @@ -1739,10 +1855,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: ACB428114EEE4A1190FD48AB85FF4AA4 Ref B: MAA201060516053 Ref C: 2025-05-28T20:26:17Z" + "Ref A: D67CA8676BAA4899A0D8A669880DE17A Ref B: MAA201060513023 Ref C: 2025-06-13T14:00:02Z" ], "Date": [ - "Wed, 28 May 2025 20:26:20 GMT" + "Fri, 13 Jun 2025 14:00:02 GMT" ], "Expires": [ "-1" @@ -1755,18 +1871,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2NDgwMDE2NDIzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPU96d2ZuRVh5YXpMQlc3dG81MkdObEFXNV9TTG1BRFRlWnRYM0Q2d0ZCaXZwUFF4UW1jckJIQUs2VGRURG5yeFNJbF9uRUxTeHAtNFZiV0VYQWN3WG1rS0FydnN3ZzJ1eEZnRTdQWkxNekRDNUdyU0hhSG9Fcjk3R1FFSE1CV3c5M0NHM2VPQlVfVVpnNjcxclQ1MUpQeUhCZENxeEYyelRwVndUVFBiMG5kaDNncVctWVVmVHp0M3FhMDNUWUZYN0pCZWpoaFl2eC1LaVRhYWxpMmlmR0kwWHRIQ1N0VWVzQW1vcEFQbUhTb1cwbDNSM2w4RURuM2piU2lnWjVIc0h1anhCZW5GWGI5Nkt1MHpaemp6MlhZbEFhQkZZVUE1QzhCXzZ2MnBKdWNfbmZKN0NSTHZtY25JY3RvTGNfTlBmaHEtNUx2UzhYcGo5b0F2eDhkZElydyZoPUZ3RmlxZXAxMk9LUXU3emxyTjhMdVlRZ3lZclc2NVRqNnZsWXRmNGpHbDg=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/d6278e79-d4ab-4a06-9925-62203abc339f?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854198762214991&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jJnp74XQr5RlCh9ilIxtMDVENUrTGqVaWm7U0Zt9wjZYO2cdoCJRC2KViNqIS54jjighJOPd203JuJExn1mqJRYieucJE4mLXe-WF2p2QJteCfywe4_BjJUue5I-Y-AEHDN85LIlRLEr8RQfZ6ZaISRcDiNwaB6SDRjw_z3HUJ8cj8lmLJkrACI-GaG5HZAyOAshko3VW8mQ3cvW7S8GrOeJIYBrvyRoFceLGp6f9-REYMNxXBm8EEVNuvaTPerpDzAWNeU26thuw56x5JKSxcrGPZc-vGlnT-Wfk6oQZ7h0Fi0nBo1E-_d0TDM3_XDy45bMXzbS-19b34lpwgi8Qw&h=qkv1Jx_70SrDWE43D_NXFEDpfDbFRnSBq5EpzKpTedg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q2Mjc4ZTc5LWQ0YWItNGEwNi05OTI1LTYyMjAzYWJjMzM5Zj9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MTk4NzYyMjE0OTkxJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWpKbnA3NFhRcjVSbENoOWlsSXh0TURWRU5VclRHcVZhV203VTBadDl3alpZTzJjZG9DSlJDMktWaU5xSVM1NGpqaWdoSk9QZDIwM0p1SkV4bjFtcUpSWWlldWNKRTRtTFhlLVdGMnAyUUp0ZUNmeXdlNF9CakpVdWU1SS1ZLUFFSEROODVMSWxSTEVyOFJRZlo2WmFJU1JjRGlOd2FCNlNEUmp3X3ozSFVKOGNqOGxtTEprckFDSS1HYUc1SFpBeU9Bc2hrbzNWVzhtUTNjdlc3UzhHck9lSklZQnJ2eVJvRmNlTEdwNmY5LVJFWU1OeFhCbThFRVZOdXZhVFBlcnBEekFXTmVVMjZ0aHV3NTZ4NUpLU3hjckdQWmMtdkdsblQtV2ZrNm9RWjdoMEZpMG5CbzFFLV9kMFRETTNfWER5NDViTVh6YlMtMTliMzRscHdnaThRdyZoPXFrdjFKeF83MFNyRFdFNDNEX05YRkVEcGZEYkZSblNCcTVFcHpLcFRlZGc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + "82585fef-7915-4cb5-af00-562c8ee4c31c" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1787,10 +1903,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3538924-61d3-4f6a-ad13-72ceaf231c6a" + "f8b7933b-e773-4c7d-9963-3c457da4b602" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d34e8c4e-9aad-4212-a905-9c41b16a65d2" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d3c19ef1-9ac8-4438-bd31-c248c00ca8c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1799,10 +1915,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "0334c5b6-1b47-4227-8548-918e954c150b" + "3f9df12a-a252-4739-8685-9e4898cb3f8f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202438Z:0334c5b6-1b47-4227-8548-918e954c150b" + "SOUTHEASTASIA:20250613T135826Z:3f9df12a-a252-4739-8685-9e4898cb3f8f" ], "X-Content-Type-Options": [ "nosniff" @@ -1811,10 +1927,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 9C72F3E3577643C280260A7EBE178ACC Ref B: MAA201060515017 Ref C: 2025-05-28T20:24:38Z" + "Ref A: CD3B8BFEE606427DAAE317DE957BC7E1 Ref B: MAA201060514045 Ref C: 2025-06-13T13:58:26Z" ], "Date": [ - "Wed, 28 May 2025 20:24:37 GMT" + "Fri, 13 Jun 2025 13:58:25 GMT" ], "Content-Length": [ "134" @@ -1826,22 +1942,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:54:07.7648903+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9254c947-377b-42b8-b179-a711433760ba\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:27:56.0153072+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6278e79-d4ab-4a06-9925-62203abc339f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA2NDgwMDE2NDIzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPU96d2ZuRVh5YXpMQlc3dG81MkdObEFXNV9TTG1BRFRlWnRYM0Q2d0ZCaXZwUFF4UW1jckJIQUs2VGRURG5yeFNJbF9uRUxTeHAtNFZiV0VYQWN3WG1rS0FydnN3ZzJ1eEZnRTdQWkxNekRDNUdyU0hhSG9Fcjk3R1FFSE1CV3c5M0NHM2VPQlVfVVpnNjcxclQ1MUpQeUhCZENxeEYyelRwVndUVFBiMG5kaDNncVctWVVmVHp0M3FhMDNUWUZYN0pCZWpoaFl2eC1LaVRhYWxpMmlmR0kwWHRIQ1N0VWVzQW1vcEFQbUhTb1cwbDNSM2w4RURuM2piU2lnWjVIc0h1anhCZW5GWGI5Nkt1MHpaemp6MlhZbEFhQkZZVUE1QzhCXzZ2MnBKdWNfbmZKN0NSTHZtY25JY3RvTGNfTlBmaHEtNUx2UzhYcGo5b0F2eDhkZElydyZoPUZ3RmlxZXAxMk9LUXU3emxyTjhMdVlRZ3lZclc2NVRqNnZsWXRmNGpHbDg=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/d6278e79-d4ab-4a06-9925-62203abc339f?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854198762214991&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jJnp74XQr5RlCh9ilIxtMDVENUrTGqVaWm7U0Zt9wjZYO2cdoCJRC2KViNqIS54jjighJOPd203JuJExn1mqJRYieucJE4mLXe-WF2p2QJteCfywe4_BjJUue5I-Y-AEHDN85LIlRLEr8RQfZ6ZaISRcDiNwaB6SDRjw_z3HUJ8cj8lmLJkrACI-GaG5HZAyOAshko3VW8mQ3cvW7S8GrOeJIYBrvyRoFceLGp6f9-REYMNxXBm8EEVNuvaTPerpDzAWNeU26thuw56x5JKSxcrGPZc-vGlnT-Wfk6oQZ7h0Fi0nBo1E-_d0TDM3_XDy45bMXzbS-19b34lpwgi8Qw&h=qkv1Jx_70SrDWE43D_NXFEDpfDbFRnSBq5EpzKpTedg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q2Mjc4ZTc5LWQ0YWItNGEwNi05OTI1LTYyMjAzYWJjMzM5Zj9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MTk4NzYyMjE0OTkxJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWpKbnA3NFhRcjVSbENoOWlsSXh0TURWRU5VclRHcVZhV203VTBadDl3alpZTzJjZG9DSlJDMktWaU5xSVM1NGpqaWdoSk9QZDIwM0p1SkV4bjFtcUpSWWlldWNKRTRtTFhlLVdGMnAyUUp0ZUNmeXdlNF9CakpVdWU1SS1ZLUFFSEROODVMSWxSTEVyOFJRZlo2WmFJU1JjRGlOd2FCNlNEUmp3X3ozSFVKOGNqOGxtTEprckFDSS1HYUc1SFpBeU9Bc2hrbzNWVzhtUTNjdlc3UzhHck9lSklZQnJ2eVJvRmNlTEdwNmY5LVJFWU1OeFhCbThFRVZOdXZhVFBlcnBEekFXTmVVMjZ0aHV3NTZ4NUpLU3hjckdQWmMtdkdsblQtV2ZrNm9RWjdoMEZpMG5CbzFFLV9kMFRETTNfWER5NDViTVh6YlMtMTliMzRscHdnaThRdyZoPXFrdjFKeF83MFNyRFdFNDNEX05YRkVEcGZEYkZSblNCcTVFcHpLcFRlZGc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + "82585fef-7915-4cb5-af00-562c8ee4c31c" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1853,7 +1969,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -1862,10 +1978,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc716a38-f1a5-4827-9667-46a776fded31" + "9c7f7ce1-4edc-4b3e-b160-10be9d2d4573" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/f82bff50-7380-4215-af7e-1ce0ea4eed6b" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/0462d28f-bbaf-413f-8fa4-0b126a2aecfb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1874,10 +1990,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "7211b0b1-01ed-4478-87b1-9e73d07d7b98" + "543b4be5-9c6f-45cc-8a65-06f0a24d5f1b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202509Z:7211b0b1-01ed-4478-87b1-9e73d07d7b98" + "SOUTHEASTASIA:20250613T135857Z:543b4be5-9c6f-45cc-8a65-06f0a24d5f1b" ], "X-Content-Type-Options": [ "nosniff" @@ -1886,10 +2002,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 46B84059007143099B6CADC638DD837D Ref B: MAA201060515017 Ref C: 2025-05-28T20:25:08Z" + "Ref A: 8A07A0E1789E45BB9582781E9B6B6242 Ref B: MAA201060514045 Ref C: 2025-06-13T13:58:57Z" ], "Date": [ - "Wed, 28 May 2025 20:25:09 GMT" + "Fri, 13 Jun 2025 13:58:56 GMT" ], "Content-Length": [ "184" @@ -1901,22 +2017,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:54:07.7648903+05:30\",\r\n \"endTime\": \"2025-05-29T01:54:48.5767874+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9254c947-377b-42b8-b179-a711433760ba\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:27:56.0153072+05:30\",\r\n \"endTime\": \"2025-06-13T19:28:56.7340483+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d6278e79-d4ab-4a06-9925-62203abc339f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/9254c947-377b-42b8-b179-a711433760ba?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840606480016423&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=OzwfnEXyazLBW7to52GNlAW5_SLmADTeZtX3D6wFBivpPQxQmcrBHAK6TdTDnrxSIl_nELSxp-4VbWEXAcwXmkKArvswg2uxFgE7PZLMzDC5GrSHaHoEr97GQEHMBWw93CG3eOBU_UZg671rT51JPyHBdCqxF2zTpVwTTPb0ndh3gqW-YUfTzt3qa03TYFX7JBejhhYvx-KiTaali2ifGI0XtHCStUesAmopAPmHSoW0l3R3l8EDn3jbSigZ5HsHujxBenFXb96Ku0zZzjz2XYlAaBFYUA5C8B_6v2pJuc_nfJ7CRLvmcnIctoLc_NPfhq-5LvS8Xpj9oAvx8ddIrw&h=FwFiqep12OKQu7zlrN8LuYQgyYrW65Tj6vlYtf4jGl8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzkyNTRjOTQ3LTM3N2ItNDJiOC1iMTc5LWE3MTE0MzM3NjBiYT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNjQ4MDAxNjQyMyZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1PendmbkVYeWF6TEJXN3RvNTJHTmxBVzVfU0xtQURUZVp0WDNENndGQml2cFBReFFtY3JCSEFLNlRkVERucnhTSWxfbkVMU3hwLTRWYldFWEFjd1hta0tBcnZzd2cydXhGZ0U3UFpMTXpEQzVHclNIYUhvRXI5N0dRRUhNQld3OTNDRzNlT0JVX1VaZzY3MXJUNTFKUHlIQmRDcXhGMnpUcFZ3VFRQYjBuZGgzZ3FXLVlVZlR6dDNxYTAzVFlGWDdKQmVqaGhZdngtS2lUYWFsaTJpZkdJMFh0SENTdFVlc0Ftb3BBUG1IU29XMGwzUjNsOEVEbjNqYlNpZ1o1SHNIdWp4QmVuRlhiOTZLdTB6WnpqejJYWWxBYUJGWVVBNUM4Ql82djJwSnVjX25mSjdDUkx2bWNuSWN0b0xjX05QZmhxLTVMdlM4WHBqOW9Bdng4ZGRJcncmaD1Gd0ZpcWVwMTJPS1F1N3psck44THVZUWd5WXJXNjVUajZ2bFl0ZjRqR2w4", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/d6278e79-d4ab-4a06-9925-62203abc339f?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854198762214991&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jJnp74XQr5RlCh9ilIxtMDVENUrTGqVaWm7U0Zt9wjZYO2cdoCJRC2KViNqIS54jjighJOPd203JuJExn1mqJRYieucJE4mLXe-WF2p2QJteCfywe4_BjJUue5I-Y-AEHDN85LIlRLEr8RQfZ6ZaISRcDiNwaB6SDRjw_z3HUJ8cj8lmLJkrACI-GaG5HZAyOAshko3VW8mQ3cvW7S8GrOeJIYBrvyRoFceLGp6f9-REYMNxXBm8EEVNuvaTPerpDzAWNeU26thuw56x5JKSxcrGPZc-vGlnT-Wfk6oQZ7h0Fi0nBo1E-_d0TDM3_XDy45bMXzbS-19b34lpwgi8Qw&h=qkv1Jx_70SrDWE43D_NXFEDpfDbFRnSBq5EpzKpTedg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Q2Mjc4ZTc5LWQ0YWItNGEwNi05OTI1LTYyMjAzYWJjMzM5Zj9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg1NDE5ODc2MjIxNDk5MSZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1qSm5wNzRYUXI1UmxDaDlpbEl4dE1EVkVOVXJUR3FWYVdtN1UwWnQ5d2paWU8yY2RvQ0pSQzJLVmlOcUlTNTRqamlnaEpPUGQyMDNKdUpFeG4xbXFKUllpZXVjSkU0bUxYZS1XRjJwMlFKdGVDZnl3ZTRfQmpKVXVlNUktWS1BRUhETjg1TElsUkxFcjhSUWZaNlphSVNSY0RpTndhQjZTRFJqd196M0hVSjhjajhsbUxKa3JBQ0ktR2FHNUhaQXlPQXNoa28zVlc4bVEzY3ZXN1M4R3JPZUpJWUJydnlSb0ZjZUxHcDZmOS1SRVlNTnhYQm04RUVWTnV2YVRQZXJwRHpBV05lVTI2dGh1dzU2eDVKS1N4Y3JHUFpjLXZHbG5ULVdmazZvUVo3aDBGaTBuQm8xRS1fZDBURE0zX1hEeTQ1Yk1YemJTLTE5YjM0bHB3Z2k4UXcmaD1xa3YxSnhfNzBTckRXRTQzRF9OWEZFRHBmRGJGUm5TQnE1RXB6S3BUZWRn", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8de3015b-7c70-4c25-9b6c-ab5a13716e78" + "82585fef-7915-4cb5-af00-562c8ee4c31c" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -1928,7 +2044,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -1937,10 +2053,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d233ebce-4551-423d-af89-7adb2e19f651" + "0736691d-69d7-4f30-835a-13bde31e889f" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/ace58ad9-e02a-4648-933d-0cb7961a8659" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/57a6f2ea-c464-4ef1-9df9-71d8e29d6cd3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -1949,10 +2065,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "803398d6-f2bb-4040-a224-33d386a50a92" + "ed7faaa4-1ba1-4230-8f84-bdc13b729438" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202510Z:803398d6-f2bb-4040-a224-33d386a50a92" + "SOUTHEASTASIA:20250613T135858Z:ed7faaa4-1ba1-4230-8f84-bdc13b729438" ], "X-Content-Type-Options": [ "nosniff" @@ -1961,10 +2077,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 9907ADBAB90D4D7B910E9F198E58EBD1 Ref B: MAA201060515017 Ref C: 2025-05-28T20:25:09Z" + "Ref A: 741F1777957540B4BCFF6E8904D3188A Ref B: MAA201060514045 Ref C: 2025-06-13T13:58:57Z" ], "Date": [ - "Wed, 28 May 2025 20:25:10 GMT" + "Fri, 13 Jun 2025 13:58:57 GMT" ], "Expires": [ "-1" @@ -1977,18 +2093,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3MTIzNjQxOTQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXFnYnlJWl81ZTBMbl9ZVzhvRnlZYk8tNnlkMGlUam1PbHpZU0FsSUlhTUc1Mmhoc2JObkstYVItVG40UjM5NzZDZk51eXc5Y1dUN2Y3aFYyNnNINHdjZmZjOHhaS19OTWhYeHo1cDM2M0xjY3ZrVnJKQUZSUWppSFU5clJ1clU2OHJJQ1dfTGNDREpyU0VkSXB1VmViNjlnbjdBaWxiMzNhV1Nvd0o0NVVDZV9TU0ZJZWdlWnlXU2hfSjhaYmhXTDVhS0FUUXRab1l6VzZ4ZzdIdTJDcVVqSkZRdmstLVo1SnlDM1Vfd1F6VGlFeXpZMWt3cFkyWWgtaU5CSGZMZGpMTElVZWticlRodmttVG96cHhIeGM1bHRBQWhHZFl3dENraElueTRHbE1la0s3cUd3cWNTcnAxTE9OU3J6b2s0M1R1RE0tSlprTm16ak1QNFA3MkhLQSZoPXg1Nm1uMTloaHdRM2hvWXJaejNZZWZkb1RJVG9IUzV0a2NLaGl5dmVtUjA=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2d61e63b-35a4-4a1c-a987-9dc7545950c1?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854199404526245&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=pN7mOHNqlD0N_eNusYkXOXS6xqxLG0MSex5A6UR0T4bA75pf7MkUKGRvaoTaCJHViL4gFBZx7CMtHs0lcneEwhsbNVkZqqR1khtTkhwlE2NTcYugtIUuz0Z0mMm-2AGKphEmizNfXjWTRf2TInKbC61f5zTrkey69Ci7f2kFsWE5GlVcQ4ZGnbNKPXq9Er8WjlcXxHUSBq72fg884ZruyB6_Q-ecaTexrJcX7Od2z9aNzSxm08Y8SRZ7-kH9qFTieyysxsvF5DUoMKKhcpbpgt6ni46iADcjT01Nrq561jItYIJb9m1yg8po5vAgaECEY-bxTE_gcJoeq0zt5WcM0w&h=sQNuQQKdoxDjJjgYbbUc78bOk0-_1yE1EoWfiBIarvk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJkNjFlNjNiLTM1YTQtNGExYy1hOTg3LTlkYzc1NDU5NTBjMT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MTk5NDA0NTI2MjQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXBON21PSE5xbEQwTl9lTnVzWWtYT1hTNnhxeExHME1TZXg1QTZVUjBUNGJBNzVwZjdNa1VLR1J2YW9UYUNKSFZpTDRnRkJaeDdDTXRIczBsY25lRXdoc2JOVmtacXFSMWtodFRraHdsRTJOVGNZdWd0SVV1ejBaMG1NbS0yQUdLcGhFbWl6TmZYaldUUmYyVEluS2JDNjFmNXpUcmtleTY5Q2k3ZjJrRnNXRTVHbFZjUTRaR25iTktQWHE5RXI4V2psY1h4SFVTQnE3MmZnODg0WnJ1eUI2X1EtZWNhVGV4ckpjWDdPZDJ6OWFOelN4bTA4WThTUlo3LWtIOXFGVGlleXlzeHN2RjVEVW9NS0toY3BicGd0Nm5pNDZpQURjalQwMU5ycTU2MWpJdFlJSmI5bTF5ZzhwbzV2QWdhRUNFWS1ieFRFX2djSm9lcTB6dDVXY00wdyZoPXNRTnVRUUtkb3hEakpqZ1liYlVjNzhiT2swLV8xeUUxRW9XZmlCSWFydms=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7a575816-86ee-407e-a333-5c2cbb2cbded" + "edacd2e5-1a89-422c-86b2-2d086ef2e737" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2000,7 +2116,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997" + "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2009,10 +2125,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88781195-56f6-45e6-8206-6e8344fd3d3e" + "04fe0ba1-de07-4506-a137-ba84153017b3" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/9133e9de-a97f-47d7-95d0-c9a39df9e18a" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/e5bdadf3-9c3a-4899-a36b-f6303872cf19" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2021,10 +2137,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "fea11790-2d5c-43a8-95a5-8d8d663e6af5" + "243aaa37-2bc5-4078-89d8-f2eb996a0485" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202542Z:fea11790-2d5c-43a8-95a5-8d8d663e6af5" + "SOUTHEASTASIA:20250613T135930Z:243aaa37-2bc5-4078-89d8-f2eb996a0485" ], "X-Content-Type-Options": [ "nosniff" @@ -2033,13 +2149,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 7C1F79220E424960AE5AD48D92B33F3F Ref B: MAA201060516049 Ref C: 2025-05-28T20:25:42Z" + "Ref A: 3AB472E0B9904407BAC6B1534AC8113D Ref B: MAA201060513049 Ref C: 2025-06-13T13:59:30Z" ], "Date": [ - "Wed, 28 May 2025 20:25:42 GMT" + "Fri, 13 Jun 2025 13:59:30 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2048,22 +2164,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:55:12.170208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5129d3a-9b04-43ee-a652-67d36722bc20\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:29:00.2184202+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2d61e63b-35a4-4a1c-a987-9dc7545950c1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3MTIzNjQxOTQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXFnYnlJWl81ZTBMbl9ZVzhvRnlZYk8tNnlkMGlUam1PbHpZU0FsSUlhTUc1Mmhoc2JObkstYVItVG40UjM5NzZDZk51eXc5Y1dUN2Y3aFYyNnNINHdjZmZjOHhaS19OTWhYeHo1cDM2M0xjY3ZrVnJKQUZSUWppSFU5clJ1clU2OHJJQ1dfTGNDREpyU0VkSXB1VmViNjlnbjdBaWxiMzNhV1Nvd0o0NVVDZV9TU0ZJZWdlWnlXU2hfSjhaYmhXTDVhS0FUUXRab1l6VzZ4ZzdIdTJDcVVqSkZRdmstLVo1SnlDM1Vfd1F6VGlFeXpZMWt3cFkyWWgtaU5CSGZMZGpMTElVZWticlRodmttVG96cHhIeGM1bHRBQWhHZFl3dENraElueTRHbE1la0s3cUd3cWNTcnAxTE9OU3J6b2s0M1R1RE0tSlprTm16ak1QNFA3MkhLQSZoPXg1Nm1uMTloaHdRM2hvWXJaejNZZWZkb1RJVG9IUzV0a2NLaGl5dmVtUjA=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2d61e63b-35a4-4a1c-a987-9dc7545950c1?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854199404526245&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=pN7mOHNqlD0N_eNusYkXOXS6xqxLG0MSex5A6UR0T4bA75pf7MkUKGRvaoTaCJHViL4gFBZx7CMtHs0lcneEwhsbNVkZqqR1khtTkhwlE2NTcYugtIUuz0Z0mMm-2AGKphEmizNfXjWTRf2TInKbC61f5zTrkey69Ci7f2kFsWE5GlVcQ4ZGnbNKPXq9Er8WjlcXxHUSBq72fg884ZruyB6_Q-ecaTexrJcX7Od2z9aNzSxm08Y8SRZ7-kH9qFTieyysxsvF5DUoMKKhcpbpgt6ni46iADcjT01Nrq561jItYIJb9m1yg8po5vAgaECEY-bxTE_gcJoeq0zt5WcM0w&h=sQNuQQKdoxDjJjgYbbUc78bOk0-_1yE1EoWfiBIarvk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJkNjFlNjNiLTM1YTQtNGExYy1hOTg3LTlkYzc1NDU5NTBjMT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MTk5NDA0NTI2MjQ1JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXBON21PSE5xbEQwTl9lTnVzWWtYT1hTNnhxeExHME1TZXg1QTZVUjBUNGJBNzVwZjdNa1VLR1J2YW9UYUNKSFZpTDRnRkJaeDdDTXRIczBsY25lRXdoc2JOVmtacXFSMWtodFRraHdsRTJOVGNZdWd0SVV1ejBaMG1NbS0yQUdLcGhFbWl6TmZYaldUUmYyVEluS2JDNjFmNXpUcmtleTY5Q2k3ZjJrRnNXRTVHbFZjUTRaR25iTktQWHE5RXI4V2psY1h4SFVTQnE3MmZnODg0WnJ1eUI2X1EtZWNhVGV4ckpjWDdPZDJ6OWFOelN4bTA4WThTUlo3LWtIOXFGVGlleXlzeHN2RjVEVW9NS0toY3BicGd0Nm5pNDZpQURjalQwMU5ycTU2MWpJdFlJSmI5bTF5ZzhwbzV2QWdhRUNFWS1ieFRFX2djSm9lcTB6dDVXY00wdyZoPXNRTnVRUUtkb3hEakpqZ1liYlVjNzhiT2swLV8xeUUxRW9XZmlCSWFydms=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7a575816-86ee-407e-a333-5c2cbb2cbded" + "edacd2e5-1a89-422c-86b2-2d086ef2e737" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2075,7 +2191,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2084,10 +2200,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1a49927-f7e6-4e84-a494-de15730944a2" + "aa6e04cd-f4b4-4bd9-bec2-5689b4176b2c" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/65d08be9-72cc-403c-9597-8ee81039778c" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/29ac705f-f810-4f41-beb9-01a16e70f16c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2096,10 +2212,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "dc29613c-768e-4a19-894c-ec082a534931" + "f16f2e3f-481a-4846-a124-ec76c2515198" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202615Z:dc29613c-768e-4a19-894c-ec082a534931" + "SOUTHEASTASIA:20250613T140001Z:f16f2e3f-481a-4846-a124-ec76c2515198" ], "X-Content-Type-Options": [ "nosniff" @@ -2108,13 +2224,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 5E23A13036B94F488EEA473D37E68711 Ref B: MAA201060516049 Ref C: 2025-05-28T20:26:14Z" + "Ref A: FABB0B1F7833426FB1374CB24D0ED881 Ref B: MAA201060513049 Ref C: 2025-06-13T14:00:01Z" ], "Date": [ - "Wed, 28 May 2025 20:26:14 GMT" + "Fri, 13 Jun 2025 14:00:01 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2123,22 +2239,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:55:12.170208+05:30\",\r\n \"endTime\": \"2025-05-29T01:56:13.0131407+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f5129d3a-9b04-43ee-a652-67d36722bc20\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:29:00.2184202+05:30\",\r\n \"endTime\": \"2025-06-13T19:29:50.9684114+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2d61e63b-35a4-4a1c-a987-9dc7545950c1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/f5129d3a-9b04-43ee-a652-67d36722bc20?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607123641945&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qgbyIZ_5e0Ln_YW8oFyYbO-6yd0iTjmOlzYSAlIIaMG52hhsbNnK-aR-Tn4R3976CfNuyw9cWT7f7hV26sH4wcffc8xZK_NMhXxz5p363LccvkVrJAFRQjiHU9rRurU68rICW_LcCDJrSEdIpuVeb69gn7Ailb33aWSowJ45UCe_SSFIegeZyWSh_J8ZbhWL5aKATQtZoYzW6xg7Hu2CqUjJFQvk--Z5JyC3U_wQzTiEyzY1kwpY2Yh-iNBHfLdjLLIUekbrThvkmTozpxHxc5ltAAhGdYwtCkhIny4GlMekK7qGwqcSrp1LONSrzok43TuDM-JZkNmzjMP4P72HKA&h=x56mn19hhwQ3hoYrZz3YefdoTIToHS5tkcKhiyvemR0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2Y1MTI5ZDNhLTliMDQtNDNlZS1hNjUyLTY3ZDM2NzIyYmMyMD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNzEyMzY0MTk0NSZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1xZ2J5SVpfNWUwTG5fWVc4b0Z5WWJPLTZ5ZDBpVGptT2x6WVNBbElJYU1HNTJoaHNiTm5LLWFSLVRuNFIzOTc2Q2ZOdXl3OWNXVDdmN2hWMjZzSDR3Y2ZmYzh4WktfTk1oWHh6NXAzNjNMY2N2a1ZySkFGUlFqaUhVOXJSdXJVNjhySUNXX0xjQ0RKclNFZElwdVZlYjY5Z243QWlsYjMzYVdTb3dKNDVVQ2VfU1NGSWVnZVp5V1NoX0o4WmJoV0w1YUtBVFF0Wm9Zelc2eGc3SHUyQ3FVakpGUXZrLS1aNUp5QzNVX3dRelRpRXl6WTFrd3BZMlloLWlOQkhmTGRqTExJVWVrYnJUaHZrbVRvenB4SHhjNWx0QUFoR2RZd3RDa2hJbnk0R2xNZWtLN3FHd3FjU3JwMUxPTlNyem9rNDNUdURNLUpaa05tempNUDRQNzJIS0EmaD14NTZtbjE5aGh3UTNob1lyWnozWWVmZG9USVRvSFM1dGtjS2hpeXZlbVIw", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2d61e63b-35a4-4a1c-a987-9dc7545950c1?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854199404526245&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=pN7mOHNqlD0N_eNusYkXOXS6xqxLG0MSex5A6UR0T4bA75pf7MkUKGRvaoTaCJHViL4gFBZx7CMtHs0lcneEwhsbNVkZqqR1khtTkhwlE2NTcYugtIUuz0Z0mMm-2AGKphEmizNfXjWTRf2TInKbC61f5zTrkey69Ci7f2kFsWE5GlVcQ4ZGnbNKPXq9Er8WjlcXxHUSBq72fg884ZruyB6_Q-ecaTexrJcX7Od2z9aNzSxm08Y8SRZ7-kH9qFTieyysxsvF5DUoMKKhcpbpgt6ni46iADcjT01Nrq561jItYIJb9m1yg8po5vAgaECEY-bxTE_gcJoeq0zt5WcM0w&h=sQNuQQKdoxDjJjgYbbUc78bOk0-_1yE1EoWfiBIarvk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJkNjFlNjNiLTM1YTQtNGExYy1hOTg3LTlkYzc1NDU5NTBjMT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg1NDE5OTQwNDUyNjI0NSZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1wTjdtT0hOcWxEME5fZU51c1lrWE9YUzZ4cXhMRzBNU2V4NUE2VVIwVDRiQTc1cGY3TWtVS0dSdmFvVGFDSkhWaUw0Z0ZCWng3Q010SHMwbGNuZUV3aHNiTlZrWnFxUjFraHRUa2h3bEUyTlRjWXVndElVdXowWjBtTW0tMkFHS3BoRW1pek5mWGpXVFJmMlRJbktiQzYxZjV6VHJrZXk2OUNpN2Yya0ZzV0U1R2xWY1E0WkduYk5LUFhxOUVyOFdqbGNYeEhVU0JxNzJmZzg4NFpydXlCNl9RLWVjYVRleHJKY1g3T2QyejlhTnpTeG0wOFk4U1JaNy1rSDlxRlRpZXl5c3hzdkY1RFVvTUtLaGNwYnBndDZuaTQ2aUFEY2pUMDFOcnE1NjFqSXRZSUpiOW0xeWc4cG81dkFnYUVDRVktYnhURV9nY0pvZXEwenQ1V2NNMHcmaD1zUU51UVFLZG94RGpKamdZYmJVYzc4Yk9rMC1fMXlFMUVvV2ZpQklhcnZr", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7a575816-86ee-407e-a333-5c2cbb2cbded" + "edacd2e5-1a89-422c-86b2-2d086ef2e737" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2150,7 +2266,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + "Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2159,10 +2275,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a51b55a1-ae3c-40f2-a776-8b3c34b99971" + "c25f98ca-5c1d-4006-8ed1-6e65c9a18854" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/6c6eca7e-0064-49ed-bb7a-09c823fff984" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/44f132e2-b358-49f3-8658-f634bc8dde51" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2171,10 +2287,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "ad093c9a-69ae-4290-a0dd-5ea5f2a060a3" + "5b42f9f7-f658-498e-8bbc-449e1ed1622e" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202616Z:ad093c9a-69ae-4290-a0dd-5ea5f2a060a3" + "SOUTHEASTASIA:20250613T140001Z:5b42f9f7-f658-498e-8bbc-449e1ed1622e" ], "X-Content-Type-Options": [ "nosniff" @@ -2183,10 +2299,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: F79F9393AFF84FBFBEE5F26E23D2FBBC Ref B: MAA201060516049 Ref C: 2025-05-28T20:26:15Z" + "Ref A: B32ED39B2F234CD583588A636EC18C66 Ref B: MAA201060513049 Ref C: 2025-06-13T14:00:01Z" ], "Date": [ - "Wed, 28 May 2025 20:26:15 GMT" + "Fri, 13 Jun 2025 14:00:01 GMT" ], "Expires": [ "-1" @@ -2199,18 +2315,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3ODEwNDMxMTAxJmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9UU80eENDOGZhWHJUX1NadTRiYjYtcUFiY21SdWhQTjVNQmx0QXpRNlBtM3VuODR2aVViSGdpQ1RveGlId0dVdmVsOFRZcU5Oa1M2S2xsUFVBQktKV1JRR1BzLUhhZnBpVzl3bFVGTW1rUENXS2pZQWtXdEpWc2NlaEdDdEUzQ24zSzZ2VzFDMkdvMDJtOGNqRHdaLUVGNGxZUmVyYmU4ZkpfbGRaU2hkOUw4cW9BTDRpUVVha2xyNHM3TDhoa1FXdEYxdWtXeXd6QzRUYkltd3BOcGZjay1NVTdLOGRkR2dHRkNfQUpRWlZDYmI4RXBVUmo0bmlnT3pRRXpXOW1xZmJpaXhPYTdsRC1UdTBuTWlnSGFTeWMtOHA2S2RQZXRKRDQ0ZW1EdkNjOTVGOGh3NURCVHNrVDlaUTM1RFB3NXRsZUVlaUtKRGFFQnQ0NWp6UWRjeGdnJmg9b3Z4a2Z5N0VjWVlCUXhtcWVlUmNWNGIyaFJiU0JETC1leEkwU3VZLW5nNA==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/89cc060f-6596-427d-a088-88c18262e490?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854200032800710&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YtzZ85USlKfZTL-xAafpt4w9Ji_E_3Eg2soivPb9Ppt4gFGhQ_AsTq3Hgo5sobnKlkZ37YFatcS0tC7kGXMHVf3xRYUCA-wsSlSVMNv4ga5Q3ke5tEQU2u21QFr-ptXDwaoP1bZupQBmiJYH63VlETd3QYDnOzHh6NKC8sb5S5xOKFVFJbutQPSNvlVRz3ehBC2_EjtShyrVmfYyYo9nOb4-nOo8rFiXx_Eidt9L--HbvOseoRzaeTi1XWIaV8TTEnDB6MetyuycJnT64vWcg4T7u3xMkf9Qu8E_3Up5Uyj34ssjombXawjUJoQI8gu33dXQzzZExgjP9cXHFYW3rg&h=Cs6OkAd0TqmcbTX090jFUOpj2AGQmXknwOynk9SVxpg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg5Y2MwNjBmLTY1OTYtNDI3ZC1hMDg4LTg4YzE4MjYyZTQ5MD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MjAwMDMyODAwNzEwJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPVl0elo4NVVTbEtmWlRMLXhBYWZwdDR3OUppX0VfM0VnMnNvaXZQYjlQcHQ0Z0ZHaFFfQXNUcTNIZ281c29ibktsa1ozN1lGYXRjUzB0QzdrR1hNSFZmM3hSWVVDQS13c1NsU1ZNTnY0Z2E1UTNrZTV0RVFVMnUyMVFGci1wdFhEd2FvUDFiWnVwUUJtaUpZSDYzVmxFVGQzUVlEbk96SGg2TktDOHNiNVM1eE9LRlZGSmJ1dFFQU052bFZSejNlaEJDMl9FanRTaHlyVm1mWXlZbzluT2I0LW5PbzhyRmlYeF9FaWR0OUwtLUhidk9zZW9SemFlVGkxWFdJYVY4VFRFbkRCNk1ldHl1eWNKblQ2NHZXY2c0VDd1M3hNa2Y5UXU4RV8zVXA1VXlqMzRzc2pvbWJYYXdqVUpvUUk4Z3UzM2RYUXp6WkV4Z2pQOWNYSEZZVzNyZyZoPUNzNk9rQWQwVHFtY2JUWDA5MGpGVU9wajJBR1FtWGtud095bms5U1Z4cGc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "510132d9-2d89-448d-ac09-065864562367" + "65583a25-122e-4402-9b7c-55ce6b6205d3" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2222,7 +2338,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996" + "Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2231,10 +2347,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4c7f48c-e171-4a14-93b4-a0092125ec26" + "56059a76-0e02-4e91-a85d-efe9aab72ff0" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/3c1c6bd7-1d1d-4900-9dcd-6930c3ac4f8e" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/dee448cf-ea6f-4a45-a817-76bf558a3e96" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2243,10 +2359,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "945fe881-7306-4b29-b63e-eb245f71c48e" + "50ff9e16-14cb-466e-b779-c4fb44730c96" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202651Z:945fe881-7306-4b29-b63e-eb245f71c48e" + "SOUTHEASTASIA:20250613T140034Z:50ff9e16-14cb-466e-b779-c4fb44730c96" ], "X-Content-Type-Options": [ "nosniff" @@ -2255,10 +2371,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 196B7252E47A4443B1B9150464F81780 Ref B: MAA201060516053 Ref C: 2025-05-28T20:26:51Z" + "Ref A: FA50EACEB35F4FB08DF99A89CA7A0F96 Ref B: MAA201060513023 Ref C: 2025-06-13T14:00:33Z" ], "Date": [ - "Wed, 28 May 2025 20:26:51 GMT" + "Fri, 13 Jun 2025 14:00:33 GMT" ], "Content-Length": [ "134" @@ -2270,22 +2386,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:56:20.6849264+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f2f5aa3-aa92-408b-bb62-06de4052ec5a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:30:03.1402826+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"89cc060f-6596-427d-a088-88c18262e490\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODQwNjA3ODEwNDMxMTAxJmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9UU80eENDOGZhWHJUX1NadTRiYjYtcUFiY21SdWhQTjVNQmx0QXpRNlBtM3VuODR2aVViSGdpQ1RveGlId0dVdmVsOFRZcU5Oa1M2S2xsUFVBQktKV1JRR1BzLUhhZnBpVzl3bFVGTW1rUENXS2pZQWtXdEpWc2NlaEdDdEUzQ24zSzZ2VzFDMkdvMDJtOGNqRHdaLUVGNGxZUmVyYmU4ZkpfbGRaU2hkOUw4cW9BTDRpUVVha2xyNHM3TDhoa1FXdEYxdWtXeXd6QzRUYkltd3BOcGZjay1NVTdLOGRkR2dHRkNfQUpRWlZDYmI4RXBVUmo0bmlnT3pRRXpXOW1xZmJpaXhPYTdsRC1UdTBuTWlnSGFTeWMtOHA2S2RQZXRKRDQ0ZW1EdkNjOTVGOGh3NURCVHNrVDlaUTM1RFB3NXRsZUVlaUtKRGFFQnQ0NWp6UWRjeGdnJmg9b3Z4a2Z5N0VjWVlCUXhtcWVlUmNWNGIyaFJiU0JETC1leEkwU3VZLW5nNA==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/89cc060f-6596-427d-a088-88c18262e490?p=03a7a6b8-b984-45f8-95ef-3401f431f263&api-version=2024-11-01&t=638854200032800710&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YtzZ85USlKfZTL-xAafpt4w9Ji_E_3Eg2soivPb9Ppt4gFGhQ_AsTq3Hgo5sobnKlkZ37YFatcS0tC7kGXMHVf3xRYUCA-wsSlSVMNv4ga5Q3ke5tEQU2u21QFr-ptXDwaoP1bZupQBmiJYH63VlETd3QYDnOzHh6NKC8sb5S5xOKFVFJbutQPSNvlVRz3ehBC2_EjtShyrVmfYyYo9nOb4-nOo8rFiXx_Eidt9L--HbvOseoRzaeTi1XWIaV8TTEnDB6MetyuycJnT64vWcg4T7u3xMkf9Qu8E_3Up5Uyj34ssjombXawjUJoQI8gu33dXQzzZExgjP9cXHFYW3rg&h=Cs6OkAd0TqmcbTX090jFUOpj2AGQmXknwOynk9SVxpg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg5Y2MwNjBmLTY1OTYtNDI3ZC1hMDg4LTg4YzE4MjYyZTQ5MD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZhcGktdmVyc2lvbj0yMDI0LTExLTAxJnQ9NjM4ODU0MjAwMDMyODAwNzEwJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPVl0elo4NVVTbEtmWlRMLXhBYWZwdDR3OUppX0VfM0VnMnNvaXZQYjlQcHQ0Z0ZHaFFfQXNUcTNIZ281c29ibktsa1ozN1lGYXRjUzB0QzdrR1hNSFZmM3hSWVVDQS13c1NsU1ZNTnY0Z2E1UTNrZTV0RVFVMnUyMVFGci1wdFhEd2FvUDFiWnVwUUJtaUpZSDYzVmxFVGQzUVlEbk96SGg2TktDOHNiNVM1eE9LRlZGSmJ1dFFQU052bFZSejNlaEJDMl9FanRTaHlyVm1mWXlZbzluT2I0LW5PbzhyRmlYeF9FaWR0OUwtLUhidk9zZW9SemFlVGkxWFdJYVY4VFRFbkRCNk1ldHl1eWNKblQ2NHZXY2c0VDd1M3hNa2Y5UXU4RV8zVXA1VXlqMzRzc2pvbWJYYXdqVUpvUUk4Z3UzM2RYUXp6WkV4Z2pQOWNYSEZZVzNyZyZoPUNzNk9rQWQwVHFtY2JUWDA5MGpGVU9wajJBR1FtWGtud095bms5U1Z4cGc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "510132d9-2d89-448d-ac09-065864562367" + "65583a25-122e-4402-9b7c-55ce6b6205d3" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2297,7 +2413,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999" + "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2306,10 +2422,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "84036969-e81a-4cee-87d5-22c4f62e6c37" + "bbece7af-789c-4dcf-835b-2ca13def9f32" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/2539b1bf-5bb4-4f2d-a596-4ca53fa841f2" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/c07827b8-a105-4324-b9b0-570d2b2cfa3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2318,10 +2434,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "55ee7f99-b54b-44fb-926d-1a43b2288e0b" + "bf546b5e-489e-4419-a9b2-7fc74a1e3c59" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202722Z:55ee7f99-b54b-44fb-926d-1a43b2288e0b" + "SOUTHEASTASIA:20250613T140104Z:bf546b5e-489e-4419-a9b2-7fc74a1e3c59" ], "X-Content-Type-Options": [ "nosniff" @@ -2330,10 +2446,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 5FDE9AF9D9294127BB9C9C13C1EAE2B1 Ref B: MAA201060516053 Ref C: 2025-05-28T20:27:21Z" + "Ref A: 71BC15EC22E04CD4895D27F6430F600A Ref B: MAA201060513023 Ref C: 2025-06-13T14:01:04Z" ], "Date": [ - "Wed, 28 May 2025 20:27:22 GMT" + "Fri, 13 Jun 2025 14:01:03 GMT" ], "Content-Length": [ "184" @@ -2345,22 +2461,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2025-05-29T01:56:20.6849264+05:30\",\r\n \"endTime\": \"2025-05-29T01:57:21.5591688+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f2f5aa3-aa92-408b-bb62-06de4052ec5a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2025-06-13T19:30:03.1402826+05:30\",\r\n \"endTime\": \"2025-06-13T19:30:53.9371455+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"89cc060f-6596-427d-a088-88c18262e490\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/2f2f5aa3-aa92-408b-bb62-06de4052ec5a?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638840607810431101&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=QO4xCC8faXrT_SZu4bb6-qAbcmRuhPN5MBltAzQ6Pm3un84viUbHgiCToxiHwGUvel8TYqNNkS6KllPUABKJWRQGPs-HafpiW9wlUFMmkPCWKjYAkWtJVscehGCtE3Cn3K6vW1C2Go02m8cjDwZ-EF4lYRerbe8fJ_ldZShd9L8qoAL4iQUaklr4s7L8hkQWtF1ukWywzC4TbImwpNpfck-MU7K8ddGgGFC_AJQZVCbb8EpURj4nigOzQEzW9mqfbiixOa7lD-Tu0nMigHaSyc-8p6KdPetJD44emDvCc95F8hw5DBTskT9ZQ35DPw5tleEeiKJDaEBt45jzQdcxgg&h=ovxkfy7EcYYBQxmqeeRcV4b2hRbSBDL-exI0SuY-ng4", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJmMmY1YWEzLWFhOTItNDA4Yi1iYjYyLTA2ZGU0MDUyZWM1YT9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg0MDYwNzgxMDQzMTEwMSZjPU1JSUlGakNDQnY2Z0F3SUJBZ0lUSGdiaHBhVzVpdVdCYmhFRDdRQUFCdUdscFRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpVd05UQTJNRFV5TURFeFdoY05Nall3TlRBeE1EVXlNREV4V2pDQmpERUxNQWtHQTFVRUJoTUNWVk14Q3pBSkJnTlZCQWdUQWxkQk1SQXdEZ1lEVlFRSEV3ZFNaV1J0YjI1a01SNHdIQVlEVlFRS0V4Vk5hV055YjNOdlpuUWdRMjl5Y0c5eVlYUnBiMjR4UGpBOEJnTlZCQU1UTldGemVXNWpiM0JsY21GMGFXOXVjMmxuYm1sdVoyTmxjblJwWm1sallYUmxMbTFoYm1GblpXMWxiblF1WVhwMWNtVXVZMjl0TUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUEzU1JKazNiM2l6aVFIbjhZRXBuTXdVcVVBR0puTmgycFJoVzNTOGFveWZQZVZkR2x5MF9vRE9pc3l0RmthNlo4LVZKblA3bHdvV2lVU1JFMEQwVjZYd1BwcWZzZGJ0QzlBZHMxRHJkWHByNmhFV0YtWGVHNm1sanRnSlBRMEEyT2ZHWnFHaHNISWJ6ZlJtZ2lrUmZjMzkwelhRN2x6Uk9saG1mWXFOUzM0bU14SklBSWwzcm82YV9RTGM4dFhiZzh2MXVhbWRDSV9ENjhaTWhYQXVtRHRuZ2xlMFlwaVp4dmZRUU1pbXRFa0w4VWY1am5sZWZ3SVRXYW1HR2czVjc2d280aDBsdTBRSzVTWElSTEY5TEpCX3ZIR183X29XZWhPNUZkMEVUcXBFcXRNT2YwaTJIWWMxWXFvdnF3R2ZoeHFZcllHTURncUFleWNMdGRyQU04Q1FJREFRQUJvNElFdGpDQ0JMSXdKd1lKS3dZQkJBR0NOeFVLQkJvd0dEQUtCZ2dyQmdFRkJRY0RBVEFLQmdnckJnRUZCUWNEQWpBOUJna3JCZ0VFQVlJM0ZRY0VNREF1QmlZckJnRUVBWUkzRlFpR2tPTU5oTlcwZUlUeGl6NkZtOTBXenAwU2dXQ0M5ZllyZ19MUklBSUJaQUlCQ2pDQ0Fjc0dDQ3NHQVFVRkJ3RUJCSUlCdlRDQ0Fia3dZd1lJS3dZQkJRVUhNQUtHVjJoMGRIQTZMeTlqY213dWJXbGpjbTl6YjJaMExtTnZiUzl3YTJscGJtWnlZUzlEWlhKMGN5OUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJERXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd5TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRFF1WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdIUVlEVlIwT0JCWUVGS3R1TS0xMG5ReTB3VWdidmVseE9PaU94bk1FTUE0R0ExVWREd0VCX3dRRUF3SUZvREJBQmdOVkhSRUVPVEEzZ2pWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTWUdBMVVkSHdTQ0FSMHdnZ0VaTUlJQkZhQ0NBUkdnZ2dFTmhqOW9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlExSk1MMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213ekxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY213d2daMEdBMVVkSUFTQmxUQ0JrakFNQmdvckJnRUVBWUkzZXdFQk1HWUdDaXNHQVFRQmdqZDdBZ0l3V0RCV0JnZ3JCZ0VGQlFjQ0FqQktIa2dBTXdBekFHVUFNQUF4QURrQU1nQXhBQzBBTkFCa0FEWUFOQUF0QURRQVpnQTRBR01BTFFCaEFEQUFOUUExQUMwQU5RQmlBR1FBWVFCbUFHWUFaQUExQUdVQU13QXpBR1F3REFZS0t3WUJCQUdDTjNzREFqQU1CZ29yQmdFRUFZSTNld1FDTUI4R0ExVWRJd1FZTUJhQUZQRkdhTWJ4d19BckxYMkxhdUd5LWI0MV9ORkJNQjBHQTFVZEpRUVdNQlFHQ0NzR0FRVUZCd01CQmdnckJnRUZCUWNEQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQU5PYmhfOGlUVDJnaUhrVXk3b1RxYXBVR2ZKWVp6UW9GMU9nNGhkSklIVnkyVzFDcllOcllxTGxtRnVhSWF5NU1YXzgxUWFYY1pOa1B2dHNZWXlROUFsS1c4cWQ2czl4dW9CZ3ZVcEo3Ukt3NDBab1RHN0ZSQklKaVQyV2UwU3lXc0x4Y3pfNExDV1oxQ2Y1b2xZd0xaXzhVM2xPX25udkRETXJsRmhiOVc5ZVEtRDRVRXcxRzRtRVg2UHFKSlNvS1gxRDBMYzdCZEY3c3lQb3RNUWVuMDFoY1VMaG1EWXZGdUdJVWd5cllZZzZQTHZQRnNwTWdlenhyVWdhZXpCcUplUXJMejNoc2djbHpPZnNGZXB1QUV0c3B4cE5pbTY3X0Y3VXE5cGxSQjV4MFJDWno4UkhTQ2dxOUNLb2o3dzg1NThyRlhGTVctNDA3OURaZGdHLW5pUSZzPVFPNHhDQzhmYVhyVF9TWnU0YmI2LXFBYmNtUnVoUE41TUJsdEF6UTZQbTN1bjg0dmlVYkhnaUNUb3hpSHdHVXZlbDhUWXFOTmtTNktsbFBVQUJLSldSUUdQcy1IYWZwaVc5d2xVRk1ta1BDV0tqWUFrV3RKVnNjZWhHQ3RFM0NuM0s2dlcxQzJHbzAybThjakR3Wi1FRjRsWVJlcmJlOGZKX2xkWlNoZDlMOHFvQUw0aVFVYWtscjRzN0w4aGtRV3RGMXVrV3l3ekM0VGJJbXdwTnBmY2stTVU3SzhkZEdnR0ZDX0FKUVpWQ2JiOEVwVVJqNG5pZ096UUV6VzltcWZiaWl4T2E3bEQtVHUwbk1pZ0hhU3ljLThwNktkUGV0SkQ0NGVtRHZDYzk1RjhodzVEQlRza1Q5WlEzNURQdzV0bGVFZWlLSkRhRUJ0NDVqelFkY3hnZyZoPW92eGtmeTdFY1lZQlF4bXFlZVJjVjRiMmhSYlNCREwtZXhJMFN1WS1uZzQ=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Compute/locations/westcentralus/operations/89cc060f-6596-427d-a088-88c18262e490?p=03a7a6b8-b984-45f8-95ef-3401f431f263&monitor=true&api-version=2024-11-01&t=638854200032956990&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=sUpsNp6e9Ikdz0wVLSbP3W1L2LdKbM3rMeeY5AXrz1RsXAOwhbC1CpFQT7Q8lkjrwswwoDnleZvkSSLLA9HUi3BCzdsP0oonhqguEs_Jxo33RIg9AGi0509I5ItGhSFekTrRiSrE2Fje5zzOsN3RIaFgLHZllRW3DrhnvZaUumubKssCNy7BOtw_3Zpz_g2VB2Ya9-5r9nB76UYWk3JsfIi6pLMxjnmBL1YZ1ePAX9Rlj8SSBH7jg4zoKtjAta1QlmKyWH6HSFfNgwrKb7l9s0vYy0ZuUqkMLYUtIiBuCjoEOdLJshcJpcPsAmkS8QOH4acgpQcwp6KVAIutOQTKSA&h=-ikZpputKtXmOUFCvoxl4zWJMgvxYUAyT7TNObifQY4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg5Y2MwNjBmLTY1OTYtNDI3ZC1hMDg4LTg4YzE4MjYyZTQ5MD9wPTAzYTdhNmI4LWI5ODQtNDVmOC05NWVmLTM0MDFmNDMxZjI2MyZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0xMS0wMSZ0PTYzODg1NDIwMDAzMjk1Njk5MCZjPU1JSUhoekNDQm0tZ0F3SUJBZ0lUZkFlREVuUFdfS3hKYnE4RWpnQUFCNE1TY3pBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpVd05ESXdNVFV5TURJM1doY05NalV4TURFM01UVXlNREkzV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxPMVNBdnQ0REk3Rnh4Qm1aQmNmb0tETGlYcFM4VTVhZFpiUmxSdlZtLUVjQVdxR05uVm8xQXhhWHUzZ2hLTVk5NUx4ZmZodmNZQVo1NldoZ094QV9ncEFVem00dDB5VzBhVnp2N3ZBT1daSElHMWZ2VGNXWV9zSENrdVR5Q05BY1JiTmJhcWJpZGFLOVpPVFExOWJhVVEyNmtWa1A3dGpUaTZEV1dSbE0yNWQ0WVFjR2FXSm9Cd1V0b2wtaGdCNVpfclZNbGpSRjVRMVQ5XzNZcFJCdzU3U3BIdm1iMzBKTlFTcG5keWV1LS1JcDhwTXdwTmFpSVJGNzBHOFdmYlRCb0poUnFOcU5BS0JMVTNDQVZWNEg2bFlyWHRTSy1na1pDMEV6alo0emVfWFZER0JkMXNPUHNiTXg0YVFnWkVpdURKdXVrOWVxVHp6dXIzSURVZHJQMENBd0VBQWFPQ0JIUXdnZ1J3TUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnaGZtUlM0V3NtVFFDQVdRQ0FRY3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJTUnJBYTcxa1ZwcGVvWm9uWTdRUHlfUjdYV1F6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDaFFYd1MwX0VhTWI3RzNCV0dEZW9OaEFBRWFvS2tKVlV5NUhWR3lXS0FERm02VHAyV2lkd09JTW9PdS1JdW9BNjM0T1JKN2JJd3NDMldoVUEwWjgtYzJBQUQ5NTZkQXRDa241cEVCWFNxd3VLTU0zbDlLT0NsQVkxUmlBUWNQLUdXdG1iX21xWnNwTzc4R0hhcS1td2l5SURVSUNNLXVabC1xUjZVVnQ2ckxuNXhQcUhOa2VueHJzbFNfRzNJSjl5Q1Yxc2ZseGh6OTNCN1ZSOUg3QnRPeGRfbnFaT0Q1dVNWM09wUG5BVFRSTzBLQjNWQmJaMEtxdmR0V29Iak55d0xxTXVoSlV1Zkh3MnptbFEtWWozbmRoYV95VHZPUWxULTg1aWtTb3lXSTBQNF9HZUV3WDlSZGtpVkhWengzZ1I4SHpGS2tKWE93UnZ4UUVfOU92XzAmcz1zVXBzTnA2ZTlJa2R6MHdWTFNiUDNXMUwyTGRLYk0zck1lZVk1QVhyejFSc1hBT3doYkMxQ3BGUVQ3UThsa2pyd3N3d29EbmxlWnZrU1NMTEE5SFVpM0JDemRzUDBvb25ocWd1RXNfSnhvMzNSSWc5QUdpMDUwOUk1SXRHaFNGZWtUclJpU3JFMkZqZTV6ek9zTjNSSWFGZ0xIWmxsUlczRHJobnZaYVV1bXViS3NzQ055N0JPdHdfM1pwel9nMlZCMllhOS01cjluQjc2VVlXazNKc2ZJaTZwTE14am5tQkwxWVoxZVBBWDlSbGo4U1NCSDdqZzR6b0t0akF0YTFRbG1LeVdINkhTRmZOZ3dyS2I3bDlzMHZZeTBadVVxa01MWVV0SWlCdUNqb0VPZExKc2hjSnBjUHNBbWtTOFFPSDRhY2dwUWN3cDZLVkFJdXRPUVRLU0EmaD0taWtacHB1dEt0WG1PVUZDdm94bDR6V0pNZ3Z4WVVBeVQ3VE5PYmlmUVk0", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "510132d9-2d89-448d-ac09-065864562367" + "65583a25-122e-4402-9b7c-55ce6b6205d3" ], "User-Agent": [ "FxVersion/8.0.1625.21506", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.26100", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/10.0.1" ] }, "RequestBody": "", @@ -2372,7 +2488,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998" + "Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14997" ], "x-ms-need-to-refresh-epl-cache": [ "False" @@ -2381,10 +2497,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93e79cf8-b61c-4cc4-9376-643350178884" + "660cdf3f-9178-40fd-8423-dbef28b6e0e1" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/ad470f15-77fc-4951-9334-fd565b5a87f1" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/6e21b4de-3ef8-402d-9f6f-cd90704a5f42" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2393,10 +2509,10 @@ "16499" ], "x-ms-correlation-request-id": [ - "ec461b7a-f73f-491c-8663-2716c4fbdfc6" + "9a528c9f-cb02-46ad-b4c7-ce81067e1955" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202723Z:ec461b7a-f73f-491c-8663-2716c4fbdfc6" + "SOUTHEASTASIA:20250613T140106Z:9a528c9f-cb02-46ad-b4c7-ce81067e1955" ], "X-Content-Type-Options": [ "nosniff" @@ -2405,10 +2521,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 0C1967820C8145CFB043681DBA5DF3BA Ref B: MAA201060516053 Ref C: 2025-05-28T20:27:23Z" + "Ref A: 495796FD0BCB4687890A6E605894FBAF Ref B: MAA201060513023 Ref C: 2025-06-13T14:01:04Z" ], "Date": [ - "Wed, 28 May 2025 20:27:23 GMT" + "Fri, 13 Jun 2025 14:01:05 GMT" ], "Expires": [ "-1" @@ -2421,12 +2537,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "84bab0c1-b8aa-4197-98f9-59fc053543b2" + "dabe0fd8-edfd-45ad-9c8f-0826bbf63791" ], "Accept-Language": [ "en-US" @@ -2447,19 +2563,19 @@ "no-cache" ], "x-ms-request-id": [ - "6edae31c-2c2e-4481-8d35-8158d7214d1c" + "2918a00e-3f7e-485c-b389-bfb1d200f31f" ], "x-ms-correlation-request-id": [ - "8a60bc8f-7f61-4318-8838-0344e67e387c" + "dcec878b-30a9-4632-8a60-39f64ca6c596" ], "x-ms-arm-service-request-id": [ - "52e60aae-4ab1-4ead-aebc-2772f3af1db4" + "754bde5f-af2b-475a-a6e2-fb188b20fe37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d5eaf117-1e0f-4a90-b201-f3e760bf92b2" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/aec45587-0c1e-4d93-bd17-7de1099b5007" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2468,7 +2584,7 @@ "16499" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202725Z:8a60bc8f-7f61-4318-8838-0344e67e387c" + "SOUTHEASTASIA:20250613T140108Z:dcec878b-30a9-4632-8a60-39f64ca6c596" ], "X-Content-Type-Options": [ "nosniff" @@ -2477,10 +2593,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: EF94F50E58924F62AC29BDB53F849718 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:24Z" + "Ref A: E454E6D7F9A748A18B4902F420FA57A2 Ref B: MAA201060515033 Ref C: 2025-06-13T14:01:06Z" ], "Date": [ - "Wed, 28 May 2025 20:27:24 GMT" + "Fri, 13 Jun 2025 14:01:07 GMT" ], "Content-Length": [ "257" @@ -2492,12 +2608,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652 not found.\",\r\n \"details\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512 not found.\",\r\n \"details\": []\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -2516,22 +2632,22 @@ "no-cache" ], "ETag": [ - "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + "W/\"1e098e00-8784-4de1-908a-a5751f5715ce\"" ], "x-ms-request-id": [ - "98595707-8855-4287-9f7c-e32b0ba896ca" + "91f97ac1-ac00-44fb-b5a6-3e07b55fe1df" ], "x-ms-correlation-request-id": [ - "a200a4b2-6515-4c5f-b0de-50fa7281870d" + "9fcae4f6-01bf-45ea-b85e-4a5e3f3be90f" ], "x-ms-arm-service-request-id": [ - "d198a866-2652-4f58-b7f9-d8eaebf65536" + "96d1530c-4236-484e-a632-dab9456f4f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d0c485a6-cf19-4a6e-9f12-3e077a0a93f0" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/99129c9c-b13e-4489-8223-4b743883d2cf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2540,7 +2656,7 @@ "16499" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202738Z:a200a4b2-6515-4c5f-b0de-50fa7281870d" + "SOUTHEASTASIA:20250613T140122Z:9fcae4f6-01bf-45ea-b85e-4a5e3f3be90f" ], "X-Content-Type-Options": [ "nosniff" @@ -2549,13 +2665,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: A5CC5F44500C4A43AD2C9C1438DFD161 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:38Z" + "Ref A: 13F9D51112CD4763B55721DE8DE49832 Ref B: MAA201060515033 Ref C: 2025-06-13T14:01:21Z" ], "Date": [ - "Wed, 28 May 2025 20:27:38 GMT" + "Fri, 13 Jun 2025 14:01:22 GMT" ], "Content-Length": [ - "812" + "813" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2564,16 +2680,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"etag\": \"W/\\\"1e098e00-8784-4de1-908a-a5751f5715ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca5d3969-9bff-44e6-add8-9c569f57c616" + "09b8a0b6-2d29-49f3-8939-96da75fcf9ac" ], "Accept-Language": [ "en-US" @@ -2594,31 +2710,31 @@ "no-cache" ], "ETag": [ - "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + "W/\"1e098e00-8784-4de1-908a-a5751f5715ce\"" ], "x-ms-request-id": [ - "6f372441-efae-4e19-86e6-e3a4f191528c" + "b1476e84-0b6b-478e-83a8-a8264d34b373" ], "x-ms-correlation-request-id": [ - "7121f6d9-ae23-4e5a-a8a1-f100d87d8b73" + "09a42c6e-dc23-49ff-9e13-2c852874f62b" ], "x-ms-arm-service-request-id": [ - "1d27c194-6549-49da-a3b0-7466a4525a37" + "e25451d0-d409-4d76-8cb7-c3aa7321d8db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/61ace9f2-06e3-4bcd-9baa-f82329d968b2" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/8abf6a5f-37a1-4255-be28-6917698d49a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "1098" + "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ - "16498" + "16499" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202739Z:7121f6d9-ae23-4e5a-a8a1-f100d87d8b73" + "SOUTHEASTASIA:20250613T140124Z:09a42c6e-dc23-49ff-9e13-2c852874f62b" ], "X-Content-Type-Options": [ "nosniff" @@ -2627,13 +2743,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: FD6F7FD9EF7A43D7971532D4E4245A34 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:38Z" + "Ref A: 4E7D161BAB8347C189763869FC428C8E Ref B: MAA201060515033 Ref C: 2025-06-13T14:01:22Z" ], "Date": [ - "Wed, 28 May 2025 20:27:38 GMT" + "Fri, 13 Jun 2025 14:01:24 GMT" ], "Content-Length": [ - "812" + "813" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2642,16 +2758,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"etag\": \"W/\\\"1e098e00-8784-4de1-908a-a5751f5715ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e516a477-bd87-4f8e-9e88-ee80050d2495" + "2d8abfed-a42d-4310-86fb-1ee5700d6106" ], "Accept-Language": [ "en-US" @@ -2672,22 +2788,22 @@ "no-cache" ], "ETag": [ - "W/\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\"" + "W/\"1e098e00-8784-4de1-908a-a5751f5715ce\"" ], "x-ms-request-id": [ - "2d73e243-8aee-4c51-bb53-8c92bdbefe5b" + "e2f4a1c9-bf1b-4d48-8ffd-c942f957782e" ], "x-ms-correlation-request-id": [ - "6159f541-521c-4963-b551-02fd7c12fef3" + "abea6810-a82b-439a-945d-41bb3f242a01" ], "x-ms-arm-service-request-id": [ - "475bda37-7cd8-4515-ad85-7cb7a3d47551" + "7ecaae1b-55a1-49c6-aa2d-7493dcd35adc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/cf1a8161-3500-4aed-a5d8-44e9da1c64c7" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/aac1ec8f-0607-4691-b8c8-54178016f4ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2696,7 +2812,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202742Z:6159f541-521c-4963-b551-02fd7c12fef3" + "SOUTHEASTASIA:20250613T140128Z:abea6810-a82b-439a-945d-41bb3f242a01" ], "X-Content-Type-Options": [ "nosniff" @@ -2705,13 +2821,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 7A382B0D66F94F12B9EB52E4270FA59B Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:42Z" + "Ref A: 771913C613534F71B43E1C2E47B3D342 Ref B: MAA201060515011 Ref C: 2025-06-13T14:01:27Z" ], "Date": [ - "Wed, 28 May 2025 20:27:42 GMT" + "Fri, 13 Jun 2025 14:01:28 GMT" ], "Content-Length": [ - "812" + "813" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2720,16 +2836,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"bf0c53f0-e1fd-447e-b4da-90744b32ef02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"etag\": \"W/\\\"1e098e00-8784-4de1-908a-a5751f5715ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "71d45fca-3f75-4585-a577-6f0f0f5c8593" + "d038c182-30cc-4878-a75f-8b45bb5cd529" ], "Accept-Language": [ "en-US" @@ -2744,10 +2860,10 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "460" + "461" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"targetType\": \"AzureVMSS\",\r\n \"storageLocation\": {\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"targetType\": \"AzureVMSS\",\r\n \"storageLocation\": {\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2759,25 +2875,25 @@ "10" ], "x-ms-request-id": [ - "c32edbf3-af4d-4773-9044-4af791f433c2" + "0c42abe3-03c4-4706-8a8c-ca0a4c2b51af" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/c32edbf3-af4d-4773-9044-4af791f433c2?api-version=2024-07-01&t=638840608474021476&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=F6N2X6tNjlkw7jnODEliJIqROzaJbW3ejYBuxp5tk0jqoPDYvamrQJnKMzTf20JvG4kvBAteQhNxrM4ZrNMkEoveibhyaHnhucRwyIsgPPuV3vef14PtiSO6kqJL3Z476NAp9valdFpKbCoLO80_bnZGODBgg_R8qyFfVbWCkf_xE9SFHQsdlJeo8plWs6vksXChZymzXgCuOChK8RLx5SMcNF6dg2OK01eD0w7t4vcqvYvbi8Gqa14GQ69IS15nW7WXe-Sx39-r3c9bX7Urrnp7BpTm1_ExH3z0TjcDhfDHCN3Zs0HYT5o54UB7eyOk32YXbp82pAyR5tKqNBW4EQ&h=6t7LWIuheRgduywM_t_k515TKAMOXtULe_2TkfLZKHk" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/0c42abe3-03c4-4706-8a8c-ca0a4c2b51af?api-version=2024-07-01&t=638854200702294916&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qrIalvb-rM1wy2Mqe_EKsbfsjYjsWYXeEDW4cjwguwdcHytrw580yVj0ocTVFzUPwAvu51rfeIiKaK0rcKhiPnWL6t1BrV1xBUlJxj48Uno3lNaPeCxuia_-7018IvfctzDHdFpo3jLgU9vy88KPWodGIi26cNWIwCRrnKRFLP5-aa2jP_DtIZDoxrStLckulhEx-vHWaB3h6-F2ZB3fPtOHK7pa-75rnBzgtcUBQLj6xMPTI19VXOZPtCv2LrA6jj-EV44uNklQyjm13bZP2XCI7jXeHcA1kUX3UhrlbTR7hYHbJelaRCWNvjhDdcBrm8mCmWzyabFT8yczww-KSA&h=nQEaRX8NcqtK-D-6AGPwrpyc_AYBj9yCpfPdJqGNQok" ], "x-ms-correlation-request-id": [ - "d05cc341-1790-4fcc-83ba-a6fc91e8651e" + "5df83d4e-a085-494f-80ed-66c0c2403cc5" ], "azure-asyncnotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "f2bf17b1-153f-4329-8501-bf7d4668a141" + "e535339c-692e-4983-967f-24eff65d72ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/09a49c7e-f126-4105-a655-6929b0f03da4" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/a06318ef-bb6f-4f92-a28b-379a019c9b8f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" @@ -2786,7 +2902,7 @@ "11999" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202727Z:d05cc341-1790-4fcc-83ba-a6fc91e8651e" + "SOUTHEASTASIA:20250613T140110Z:5df83d4e-a085-494f-80ed-66c0c2403cc5" ], "X-Content-Type-Options": [ "nosniff" @@ -2795,13 +2911,13 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 1D0512EC94F34A96953F10E34E6C0757 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:25Z" + "Ref A: 9D26947CD76544978D4F9A9ED0A01A97 Ref B: MAA201060515033 Ref C: 2025-06-13T14:01:08Z" ], "Date": [ - "Wed, 28 May 2025 20:27:26 GMT" + "Fri, 13 Jun 2025 14:01:10 GMT" ], "Content-Length": [ - "811" + "812" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2810,12 +2926,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"etag\": \"W/\\\"fa54c8aa-827e-4d55-a232-fa5d245d5bb4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp644/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9690\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"etag\": \"W/\\\"cda66e53-1b5a-4896-9ed5-ea72ef568a74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"target\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/psnrp3001/providers/Microsoft.Compute/virtualMachineScaleSets/psnrp9747\",\r\n \"scope\": {\r\n \"include\": [],\r\n \"exclude\": []\r\n },\r\n \"targetType\": \"AzureVMSS\",\r\n \"bytesToCapturePerPacket\": 0,\r\n \"storageLocation\": {\r\n \"storagePath\": \"\",\r\n \"localPath\": \"C:\\\\captures\\\\Capture.cap\"\r\n },\r\n \"continuousCapture\": false,\r\n \"captureSettings\": {\r\n \"fileCount\": 2,\r\n \"fileSizeInBytes\": 102400,\r\n \"sessionTimeLimitInSeconds\": 60\r\n },\r\n \"filters\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkWatchers/packetCaptures\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/c32edbf3-af4d-4773-9044-4af791f433c2?api-version=2024-07-01&t=638840608474021476&c=MIIIFjCCBv6gAwIBAgITHgbhpaW5iuWBbhED7QAABuGlpTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwNTA2MDUyMDExWhcNMjYwNTAxMDUyMDExWjCBjDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3SRJk3b3iziQHn8YEpnMwUqUAGJnNh2pRhW3S8aoyfPeVdGly0_oDOisytFka6Z8-VJnP7lwoWiUSRE0D0V6XwPpqfsdbtC9Ads1DrdXpr6hEWF-XeG6mljtgJPQ0A2OfGZqGhsHIbzfRmgikRfc390zXQ7lzROlhmfYqNS34mMxJIAIl3ro6a_QLc8tXbg8v1uamdCI_D68ZMhXAumDtngle0YpiZxvfQQMimtEkL8Uf5jnlefwITWamGGg3V76wo4h0lu0QK5SXIRLF9LJB_vHG_7_oWehO5Fd0ETqpEqtMOf0i2HYc1YqovqwGfhxqYrYGMDgqAeycLtdrAM8CQIDAQABo4IEtjCCBLIwJwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDATAKBggrBgEFBQcDAjA9BgkrBgEEAYI3FQcEMDAuBiYrBgEEAYI3FQiGkOMNhNW0eITxiz6Fm90Wzp0SgWCC9fYrg_LRIAIBZAIBCjCCAcsGCCsGAQUFBwEBBIIBvTCCAbkwYwYIKwYBBQUHMAKGV2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DZXJ0cy9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDEuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDQuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwHQYDVR0OBBYEFKtuM-10nQy0wUgbvelxOOiOxnMEMA4GA1UdDwEB_wQEAwIFoDBABgNVHREEOTA3gjVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASYGA1UdHwSCAR0wggEZMIIBFaCCARGgggENhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ1JML0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwxLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwyLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmyGMWh0dHA6Ly9jcmw0LmFtZS5nYmwvY3JsL0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcmwwgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMB8GA1UdIwQYMBaAFPFGaMbxw_ArLX2LauGy-b41_NFBMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQsFAAOCAQEANObh_8iTT2giHkUy7oTqapUGfJYZzQoF1Og4hdJIHVy2W1CrYNrYqLlmFuaIay5MX_81QaXcZNkPvtsYYyQ9AlKW8qd6s9xuoBgvUpJ7RKw40ZoTG7FRBIJiT2We0SyWsLxcz_4LCWZ1Cf5olYwLZ_8U3lO_nnvDDMrlFhb9W9eQ-D4UEw1G4mEX6PqJJSoKX1D0Lc7BdF7syPotMQen01hcULhmDYvFuGIUgyrYYg6PLvPFspMgezxrUgaezBqJeQrLz3hsgclzOfsFepuAEtspxpNim67_F7Uq9plRB5x0RCZz8RHSCgq9CKoj7w8558rFXFMW-4079DZdgG-niQ&s=F6N2X6tNjlkw7jnODEliJIqROzaJbW3ejYBuxp5tk0jqoPDYvamrQJnKMzTf20JvG4kvBAteQhNxrM4ZrNMkEoveibhyaHnhucRwyIsgPPuV3vef14PtiSO6kqJL3Z476NAp9valdFpKbCoLO80_bnZGODBgg_R8qyFfVbWCkf_xE9SFHQsdlJeo8plWs6vksXChZymzXgCuOChK8RLx5SMcNF6dg2OK01eD0w7t4vcqvYvbi8Gqa14GQ69IS15nW7WXe-Sx39-r3c9bX7Urrnp7BpTm1_ExH3z0TjcDhfDHCN3Zs0HYT5o54UB7eyOk32YXbp82pAyR5tKqNBW4EQ&h=6t7LWIuheRgduywM_t_k515TKAMOXtULe_2TkfLZKHk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MzMmVkYmYzLWFmNGQtNDc3My05MDQ0LTRhZjc5MWY0MzNjMj9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NDc0MDIxNDc2JmM9TUlJSUZqQ0NCdjZnQXdJQkFnSVRIZ2JocGFXNWl1V0JiaEVEN1FBQUJ1R2xwVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05NalV3TlRBMk1EVXlNREV4V2hjTk1qWXdOVEF4TURVeU1ERXhXakNCakRFTE1Ba0dBMVVFQmhNQ1ZWTXhDekFKQmdOVkJBZ1RBbGRCTVJBd0RnWURWUVFIRXdkU1pXUnRiMjVrTVI0d0hBWURWUVFLRXhWTmFXTnliM052Wm5RZ1EyOXljRzl5WVhScGIyNHhQakE4QmdOVkJBTVROV0Z6ZVc1amIzQmxjbUYwYVc5dWMybG5ibWx1WjJObGNuUnBabWxqWVhSbExtMWhibUZuWlcxbGJuUXVZWHAxY21VdVkyOXRNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQTNTUkprM2IzaXppUUhuOFlFcG5Nd1VxVUFHSm5OaDJwUmhXM1M4YW95ZlBlVmRHbHkwX29ET2lzeXRGa2E2WjgtVkpuUDdsd29XaVVTUkUwRDBWNlh3UHBxZnNkYnRDOUFkczFEcmRYcHI2aEVXRi1YZUc2bWxqdGdKUFEwQTJPZkdacUdoc0hJYnpmUm1naWtSZmMzOTB6WFE3bHpST2xobWZZcU5TMzRtTXhKSUFJbDNybzZhX1FMYzh0WGJnOHYxdWFtZENJX0Q2OFpNaFhBdW1EdG5nbGUwWXBpWnh2ZlFRTWltdEVrTDhVZjVqbmxlZndJVFdhbUdHZzNWNzZ3bzRoMGx1MFFLNVNYSVJMRjlMSkJfdkhHXzdfb1dlaE81RmQwRVRxcEVxdE1PZjBpMkhZYzFZcW92cXdHZmh4cVlyWUdNRGdxQWV5Y0x0ZHJBTThDUUlEQVFBQm80SUV0akNDQkxJd0p3WUpLd1lCQkFHQ054VUtCQm93R0RBS0JnZ3JCZ0VGQlFjREFUQUtCZ2dyQmdFRkJRY0RBakE5QmdrckJnRUVBWUkzRlFjRU1EQXVCaVlyQmdFRUFZSTNGUWlHa09NTmhOVzBlSVR4aXo2Rm05MFd6cDBTZ1dDQzlmWXJnX0xSSUFJQlpBSUJDakNDQWNzR0NDc0dBUVVGQndFQkJJSUJ2VENDQWJrd1l3WUlLd1lCQlFVSE1BS0dWMmgwZEhBNkx5OWpjbXd1YldsamNtOXpiMlowTG1OdmJTOXdhMmxwYm1aeVlTOURaWEowY3k5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRFdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3lMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJEUXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd0hRWURWUjBPQkJZRUZLdHVNLTEwblF5MHdVZ2J2ZWx4T09pT3huTUVNQTRHQTFVZER3RUJfd1FFQXdJRm9EQkFCZ05WSFJFRU9UQTNnalZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNZR0ExVWRId1NDQVIwd2dnRVpNSUlCRmFDQ0FSR2dnZ0VOaGo5b2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTFKTUwwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXlHTVdoMGRIQTZMeTlqY213eUxtRnRaUzVuWW13dlkzSnNMMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNteUdNV2gwZEhBNkx5OWpjbXd6TG1GdFpTNW5ZbXd2WTNKc0wwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY215R01XaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZM0pzTDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjbXd3Z1owR0ExVWRJQVNCbFRDQmtqQU1CZ29yQmdFRUFZSTNld0VCTUdZR0Npc0dBUVFCZ2pkN0FnSXdXREJXQmdnckJnRUZCUWNDQWpCS0hrZ0FNd0F6QUdVQU1BQXhBRGtBTWdBeEFDMEFOQUJrQURZQU5BQXRBRFFBWmdBNEFHTUFMUUJoQURBQU5RQTFBQzBBTlFCaUFHUUFZUUJtQUdZQVpBQTFBR1VBTXdBekFHUXdEQVlLS3dZQkJBR0NOM3NEQWpBTUJnb3JCZ0VFQVlJM2V3UUNNQjhHQTFVZEl3UVlNQmFBRlBGR2FNYnh3X0FyTFgyTGF1R3ktYjQxX05GQk1CMEdBMVVkSlFRV01CUUdDQ3NHQVFVRkJ3TUJCZ2dyQmdFRkJRY0RBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBTk9iaF84aVRUMmdpSGtVeTdvVHFhcFVHZkpZWnpRb0YxT2c0aGRKSUhWeTJXMUNyWU5yWXFMbG1GdWFJYXk1TVhfODFRYVhjWk5rUHZ0c1lZeVE5QWxLVzhxZDZzOXh1b0JndlVwSjdSS3c0MFpvVEc3RlJCSUppVDJXZTBTeVdzTHhjel80TENXWjFDZjVvbFl3TFpfOFUzbE9fbm52RERNcmxGaGI5VzllUS1ENFVFdzFHNG1FWDZQcUpKU29LWDFEMExjN0JkRjdzeVBvdE1RZW4wMWhjVUxobURZdkZ1R0lVZ3lyWVlnNlBMdlBGc3BNZ2V6eHJVZ2FlekJxSmVRckx6M2hzZ2Nsek9mc0ZlcHVBRXRzcHhwTmltNjdfRjdVcTlwbFJCNXgwUkNaejhSSFNDZ3E5Q0tvajd3ODU1OHJGWEZNVy00MDc5RFpkZ0ctbmlRJnM9RjZOMlg2dE5qbGt3N2puT0RFbGlKSXFST3phSmJXM2VqWUJ1eHA1dGswanFvUERZdmFtclFKbktNelRmMjBKdkc0a3ZCQXRlUWhOeHJNNFpyTk1rRW92ZWliaHlhSG5odWNSd3lJc2dQUHVWM3ZlZjE0UHRpU082a3FKTDNaNDc2TkFwOXZhbGRGcEtiQ29MTzgwX2JuWkdPREJnZ19SOHF5RmZWYldDa2ZfeEU5U0ZIUXNkbEplbzhwbFdzNnZrc1hDaFp5bXpYZ0N1T0NoSzhSTHg1U01jTkY2ZGcyT0swMWVEMHc3dDR2Y3F2WXZiaThHcWExNEdRNjlJUzE1blc3V1hlLVN4MzktcjNjOWJYN1Vycm5wN0JwVG0xX0V4SDN6MFRqY0RoZkRIQ04zWnMwSFlUNW81NFVCN2V5T2szMllYYnA4MnBBeVI1dEtxTkJXNEVRJmg9NnQ3TFdJdWhlUmdkdXl3TV90X2s1MTVUS0FNT1h0VUxlXzJUa2ZMWktIaw==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/0c42abe3-03c4-4706-8a8c-ca0a4c2b51af?api-version=2024-07-01&t=638854200702294916&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=qrIalvb-rM1wy2Mqe_EKsbfsjYjsWYXeEDW4cjwguwdcHytrw580yVj0ocTVFzUPwAvu51rfeIiKaK0rcKhiPnWL6t1BrV1xBUlJxj48Uno3lNaPeCxuia_-7018IvfctzDHdFpo3jLgU9vy88KPWodGIi26cNWIwCRrnKRFLP5-aa2jP_DtIZDoxrStLckulhEx-vHWaB3h6-F2ZB3fPtOHK7pa-75rnBzgtcUBQLj6xMPTI19VXOZPtCv2LrA6jj-EV44uNklQyjm13bZP2XCI7jXeHcA1kUX3UhrlbTR7hYHbJelaRCWNvjhDdcBrm8mCmWzyabFT8yczww-KSA&h=nQEaRX8NcqtK-D-6AGPwrpyc_AYBj9yCpfPdJqGNQok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzBjNDJhYmUzLTAzYzQtNDcwNi04YThjLWNhMGE0YzJiNTFhZj9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAwNzAyMjk0OTE2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXFySWFsdmItck0xd3kyTXFlX0VLc2Jmc2pZanNXWVhlRURXNGNqd2d1d2RjSHl0cnc1ODB5Vmowb2NUVkZ6VVB3QXZ1NTFyZmVJaUthSzByY0toaVBuV0w2dDFCclYxeEJVbEp4ajQ4VW5vM2xOYVBlQ3h1aWFfLTcwMThJdmZjdHpESGRGcG8zakxnVTl2eTg4S1BXb2RHSWkyNmNOV0l3Q1JybktSRkxQNS1hYTJqUF9EdElaRG94clN0TGNrdWxoRXgtdkhXYUIzaDYtRjJaQjNmUHRPSEs3cGEtNzVybkJ6Z3RjVUJRTGo2eE1QVEkxOVZYT1pQdEN2MkxyQTZqai1FVjQ0dU5rbFF5am0xM2JaUDJYQ0k3alhlSGNBMWtVWDNVaHJsYlRSN2hZSGJKZWxhUkNXTnZqaERkY0JybThtQ21XenlhYkZUOHljend3LUtTQSZoPW5RRWFSWDhOY3F0Sy1ELTZBR1B3cnB5Y19BWUJqOXlDcGZQZEpxR05Rb2s=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -2834,19 +2950,19 @@ "no-cache" ], "x-ms-request-id": [ - "a85c2dc8-8352-4dd3-a1be-ee059d09df86" + "a6d86018-a57a-4b17-890c-8e1fe5ae6346" ], "x-ms-correlation-request-id": [ - "ae850f66-f7dc-4835-acd8-0dcdc21b5f2e" + "4b1e89b6-e8cd-4e12-a38a-a857cfc07515" ], "x-ms-arm-service-request-id": [ - "d52e9458-0ed4-470f-b8ff-c1ad2d67e7fe" + "d89030c4-fe23-4bee-8be4-a702203214d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/malaysiasouth/d03c1983-4792-4fa3-b3ed-0ce86effa207" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/79cee619-8392-42cf-80f0-caf542147904" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2855,7 +2971,7 @@ "16499" ], "x-ms-routing-request-id": [ - "MALAYSIASOUTH:20250528T202738Z:ae850f66-f7dc-4835-acd8-0dcdc21b5f2e" + "SOUTHEASTASIA:20250613T140121Z:4b1e89b6-e8cd-4e12-a38a-a857cfc07515" ], "X-Content-Type-Options": [ "nosniff" @@ -2864,10 +2980,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: B4F08A4804D94CDE8707496B4FF605A8 Ref B: MAA201060516029 Ref C: 2025-05-28T20:27:37Z" + "Ref A: A107647CA96444009672126BD98995E8 Ref B: MAA201060515033 Ref C: 2025-06-13T14:01:20Z" ], "Date": [ - "Wed, 28 May 2025 20:27:37 GMT" + "Fri, 13 Jun 2025 14:01:21 GMT" ], "Content-Length": [ "22" @@ -2883,12 +2999,12 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652/queryStatus?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTIvcXVlcnlTdGF0dXM/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512/queryStatus?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTIvcXVlcnlTdGF0dXM/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "6f3379ea-9c5f-49da-a910-7e939dd9006d" + "aada4638-aa72-4d69-a542-974e195191e5" ], "Accept-Language": [ "en-US" @@ -2909,28 +3025,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/f0585e45-5a45-4088-a406-8deb8222e629?api-version=2024-07-01&t=638854200906267621&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=kPrI4a6b5lbFJwvXvoGjObndHKIq7OWFdUoOEzFwro6TjZCz9_DtTzw4kYrv-sR0SmJLf2sdohMJSaDc6hspBF0tBV7aNRaPWH0tv2Ebci6tHcDjfRMJcw3HfYjfThhvgowUUWM263NGwLl_2Y_GTbuuhg4OL0XycsAHTGpa05n2N1dw8_iwcmg1jFNOoho67YFxWu8g_lm_g67PxyM4cHYvrcDsUh9MYb5ulCQsfvsoAMtNlgmuRX9numM7Yv3fkyNjiz1gPmj52us-iUF6Mi4yHWffxhai6uzYPJVwvZg2fI8hzqAVyQVWCiaETCMTgktBJ7MOEUXrZqHiKOAEwg&h=qpiusLjz9QZIyWB6G7F7m0qXYH7u9zH5ST3FBVAhNzo" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "cee5190f-117d-45bb-86da-a6caba790595" + "f0585e45-5a45-4088-a406-8deb8222e629" ], "x-ms-correlation-request-id": [ - "acc76b62-7387-4080-9c7a-30399f5f4c76" + "07d9dc15-3211-4fc0-b591-db8676f601bf" ], - "azure-asyncnotification": [ + "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "c8598cc0-b09c-4ba5-9e79-76b338646743" + "89628114-636e-44be-8465-d46d4a03bf8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/ad87ac53-3c43-41a6-a6ad-7bd4d8683abe" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/3ab3a703-d942-498e-8c65-e0c16e28f292" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -2939,7 +3055,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202744Z:acc76b62-7387-4080-9c7a-30399f5f4c76" + "SOUTHEASTASIA:20250613T140130Z:07d9dc15-3211-4fc0-b591-db8676f601bf" ], "X-Content-Type-Options": [ "nosniff" @@ -2948,10 +3064,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 17BF208319DF460DBB030C692B2DE1BB Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:43Z" + "Ref A: 78C83CDCB15445F8989EFA2E350A1EB1 Ref B: MAA201060515011 Ref C: 2025-06-13T14:01:29Z" ], "Date": [ - "Wed, 28 May 2025 20:27:44 GMT" + "Fri, 13 Jun 2025 14:01:30 GMT" ], "Content-Length": [ "317" @@ -2963,12 +3079,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"captureStartTime\": \"2025-06-13T14:01:12.7231715Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2NlZTUxOTBmLTExN2QtNDViYi04NmRhLWE2Y2FiYTc5MDU5NT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NjQzNDQyMDY2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWhEVDN5QjVFQVhyU2wyRE1FdnAwOWpiWVY0MnpkZVkyNU5xUGtRNjJxNjE5SkFYdUFtc0FXLWs1OFlrWERzdjdyUFhfZ1JicDhaM0xrSUJiYXl1SENzd3Z6U2dmanlodU1tSWdhX0ctaXlwSU9laU1ldC1qQlNOb2RoczEtNXkta0NGOFdfc0VlLVJra25KbF9qbHRCNkFRcm1WMXN4VkMyMHlWSkRlcG5HMC1Bam1uOGlpQ3BJQkxfbVVJb0ZQTllTaW1qMXJiSFZ4M0I0OFZReGhvMXQzRGtnOHpfbllpMFBaYnhSbFEyVU1lbjljZU9SZmxzMTVWNEUtWE1PYmY1OE9ERWVvbFF3MXAtVlFOZ1ZVcmpjaHROTFB5b3hkV0w5MmR0OThYQ0Y0NXZZZnVYeXN1NTRmRmdDOW9rcGpnUXpRZXVrelVLTnRXdmQyd2pET0JuQSZoPUNKOFVQMUViRlJCblB4c3V0SzNFWHEyT1NXY3lpZXdaQnM5OFRDZWY5R3c=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/f0585e45-5a45-4088-a406-8deb8222e629?api-version=2024-07-01&t=638854200906267621&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=kPrI4a6b5lbFJwvXvoGjObndHKIq7OWFdUoOEzFwro6TjZCz9_DtTzw4kYrv-sR0SmJLf2sdohMJSaDc6hspBF0tBV7aNRaPWH0tv2Ebci6tHcDjfRMJcw3HfYjfThhvgowUUWM263NGwLl_2Y_GTbuuhg4OL0XycsAHTGpa05n2N1dw8_iwcmg1jFNOoho67YFxWu8g_lm_g67PxyM4cHYvrcDsUh9MYb5ulCQsfvsoAMtNlgmuRX9numM7Yv3fkyNjiz1gPmj52us-iUF6Mi4yHWffxhai6uzYPJVwvZg2fI8hzqAVyQVWCiaETCMTgktBJ7MOEUXrZqHiKOAEwg&h=qpiusLjz9QZIyWB6G7F7m0qXYH7u9zH5ST3FBVAhNzo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YwNTg1ZTQ1LTVhNDUtNDA4OC1hNDA2LThkZWI4MjIyZTYyOT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAwOTA2MjY3NjIxJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWtQckk0YTZiNWxiRkp3dlh2b0dqT2JuZEhLSXE3T1dGZFVvT0V6RndybzZUalpDejlfRHRUenc0a1lydi1zUjBTbUpMZjJzZG9oTUpTYURjNmhzcEJGMHRCVjdhTlJhUFdIMHR2MkViY2k2dEhjRGpmUk1KY3czSGZZamZUaGh2Z293VVVXTTI2M05Hd0xsXzJZX0dUYnV1aGc0T0wwWHljc0FIVEdwYTA1bjJOMWR3OF9pd2NtZzFqRk5Pb2hvNjdZRnhXdThnX2xtX2c2N1B4eU00Y0hZdnJjRHNVaDlNWWI1dWxDUXNmdnNvQU10TmxnbXVSWDludW1NN1l2M2ZreU5qaXoxZ1BtajUydXMtaVVGNk1pNHlIV2ZmeGhhaTZ1ellQSlZ3dlpnMmZJOGh6cUFWeVFWV0NpYUVUQ01UZ2t0Qko3TU9FVVhyWnFIaUtPQUV3ZyZoPXFwaXVzTGp6OVFaSXlXQjZHN0Y3bTBxWFlIN3U5ekg1U1QzRkJWQWhOem8=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -2987,25 +3103,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608752475969&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=JycJmothaq9M4XWqcTJHi9GNtHVp1IPeZZOEDPuQl2qptGO58eQdXdgjbMrbjMxET6AFGaiApm5JFWKx7nKfqnkqRXmsCv1HCF8eMdm0dNze_ff7lDO1ujQbp3pzm7MpR4o3nYFM7FxMVMFn_h48RLfOHyubh7ZeFH7Onsi2IOUivB2j6wO6NHDIk4aJdQsvF2gENBhgI2Y3Utf_FY2rk9dHWQIuRfbZCty2upmsuKjCrLKvUy292z1hZoN4zyBXuk1w00NZEt6hQckicbpwbST78l5tbDCjHVUgupvmXd-EgNC96HNL9LTxWb7y8-f5X7ZaOD_YAIEEps4ZnGIAHA&h=VLoP6dVLhS59cxcacKU-7OTlgaRVeBlnE8eDiITwd6Q" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/f0585e45-5a45-4088-a406-8deb8222e629?api-version=2024-07-01&t=638854201014704733&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YQqYjRXWbtpIOufAHz3YY78DxI4NpTeZYsh_n9TLVkA0x6k1ZnmmN6BHOWKrMFI1dPFz8B_AJUBR7M9B7cmbyBwdvwRnvKFPYrr6urUnu2HkF6k4OPZZGvYKu7vexUxq2nCoJsYrvMeZCZYPuwTiwt2wjfdOeak-2JrLKUwPFvUxSlAeZVRidOOEi1sXN5JyNMlNsdl8bVfhQp-S1gWd86yXfal4tgNWt0vEwd2RIfRxMy3HV7UDffa6gM6xs10rVRTJPpZODMynigyCqggKWSuoJTMDvMup-P7oTV1w2njPWlOqAkHNaPqOB1ijd3Q-bt4J-1j4BSPDEb2-W5U-yg&h=X8RZZngMLZFDRvYHXabV1ZNlCW0WVHI64gIjik27tPw" ], "x-ms-request-id": [ - "cee5190f-117d-45bb-86da-a6caba790595" + "f0585e45-5a45-4088-a406-8deb8222e629" ], "x-ms-correlation-request-id": [ - "acc76b62-7387-4080-9c7a-30399f5f4c76" + "07d9dc15-3211-4fc0-b591-db8676f601bf" ], - "azure-asyncnotification": [ + "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "c8598cc0-b09c-4ba5-9e79-76b338646743" + "89628114-636e-44be-8465-d46d4a03bf8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d18b1942-c539-4c13-8306-f43a477a16f4" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/0cca3ef5-3099-4a65-83a4-4d7781b75087" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -3014,7 +3130,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202755Z:44f3e045-40a1-45a6-badc-e507edee7af0" + "SOUTHEASTASIA:20250613T140141Z:c4fb645e-6f1a-4e68-b2dd-5d846e3e82f8" ], "X-Content-Type-Options": [ "nosniff" @@ -3023,10 +3139,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 32AB08D4A1034CDB90207BB5274DF9A0 Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:54Z" + "Ref A: 8DAF3D1290F24FF2A4E84D1623C5B713 Ref B: MAA201060515011 Ref C: 2025-06-13T14:01:40Z" ], "Date": [ - "Wed, 28 May 2025 20:27:54 GMT" + "Fri, 13 Jun 2025 14:01:41 GMT" ], "Content-Length": [ "317" @@ -3038,12 +3154,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"captureStartTime\": \"2025-06-13T14:01:12.7231715Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608643442066&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=hDT3yB5EAXrSl2DMEvp09jbYV42zdeY25NqPkQ62q619JAXuAmsAW-k58YkXDsv7rPX_gRbp8Z3LkIBbayuHCswvzSgfjyhuMmIga_G-iypIOeiMet-jBSNodhs1-5y-kCF8W_sEe-RkknJl_jltB6AQrmV1sxVC20yVJDepnG0-Ajmn8iiCpIBL_mUIoFPNYSimj1rbHVx3B48VQxho1t3Dkg8z_nYi0PZbxRlQ2UMen9ceORfls15V4E-XMObf58ODEeolQw1p-VQNgVUrjchtNLPyoxdWL92dt98XCF45vYfuXysu54fFgC9okpjgQzQeukzUKNtWvd2wjDOBnA&h=CJ8UP1EbFRBnPxsutK3EXq2OSWcyiewZBs98TCef9Gw", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2NlZTUxOTBmLTExN2QtNDViYi04NmRhLWE2Y2FiYTc5MDU5NT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NjQzNDQyMDY2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWhEVDN5QjVFQVhyU2wyRE1FdnAwOWpiWVY0MnpkZVkyNU5xUGtRNjJxNjE5SkFYdUFtc0FXLWs1OFlrWERzdjdyUFhfZ1JicDhaM0xrSUJiYXl1SENzd3Z6U2dmanlodU1tSWdhX0ctaXlwSU9laU1ldC1qQlNOb2RoczEtNXkta0NGOFdfc0VlLVJra25KbF9qbHRCNkFRcm1WMXN4VkMyMHlWSkRlcG5HMC1Bam1uOGlpQ3BJQkxfbVVJb0ZQTllTaW1qMXJiSFZ4M0I0OFZReGhvMXQzRGtnOHpfbllpMFBaYnhSbFEyVU1lbjljZU9SZmxzMTVWNEUtWE1PYmY1OE9ERWVvbFF3MXAtVlFOZ1ZVcmpjaHROTFB5b3hkV0w5MmR0OThYQ0Y0NXZZZnVYeXN1NTRmRmdDOW9rcGpnUXpRZXVrelVLTnRXdmQyd2pET0JuQSZoPUNKOFVQMUViRlJCblB4c3V0SzNFWHEyT1NXY3lpZXdaQnM5OFRDZWY5R3c=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/f0585e45-5a45-4088-a406-8deb8222e629?api-version=2024-07-01&t=638854200906267621&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=kPrI4a6b5lbFJwvXvoGjObndHKIq7OWFdUoOEzFwro6TjZCz9_DtTzw4kYrv-sR0SmJLf2sdohMJSaDc6hspBF0tBV7aNRaPWH0tv2Ebci6tHcDjfRMJcw3HfYjfThhvgowUUWM263NGwLl_2Y_GTbuuhg4OL0XycsAHTGpa05n2N1dw8_iwcmg1jFNOoho67YFxWu8g_lm_g67PxyM4cHYvrcDsUh9MYb5ulCQsfvsoAMtNlgmuRX9numM7Yv3fkyNjiz1gPmj52us-iUF6Mi4yHWffxhai6uzYPJVwvZg2fI8hzqAVyQVWCiaETCMTgktBJ7MOEUXrZqHiKOAEwg&h=qpiusLjz9QZIyWB6G7F7m0qXYH7u9zH5ST3FBVAhNzo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YwNTg1ZTQ1LTVhNDUtNDA4OC1hNDA2LThkZWI4MjIyZTYyOT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAwOTA2MjY3NjIxJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWtQckk0YTZiNWxiRkp3dlh2b0dqT2JuZEhLSXE3T1dGZFVvT0V6RndybzZUalpDejlfRHRUenc0a1lydi1zUjBTbUpMZjJzZG9oTUpTYURjNmhzcEJGMHRCVjdhTlJhUFdIMHR2MkViY2k2dEhjRGpmUk1KY3czSGZZamZUaGh2Z293VVVXTTI2M05Hd0xsXzJZX0dUYnV1aGc0T0wwWHljc0FIVEdwYTA1bjJOMWR3OF9pd2NtZzFqRk5Pb2hvNjdZRnhXdThnX2xtX2c2N1B4eU00Y0hZdnJjRHNVaDlNWWI1dWxDUXNmdnNvQU10TmxnbXVSWDludW1NN1l2M2ZreU5qaXoxZ1BtajUydXMtaVVGNk1pNHlIV2ZmeGhhaTZ1ellQSlZ3dlpnMmZJOGh6cUFWeVFWV0NpYUVUQ01UZ2t0Qko3TU9FVVhyWnFIaUtPQUV3ZyZoPXFwaXVzTGp6OVFaSXlXQjZHN0Y3bTBxWFlIN3U5ekg1U1QzRkJWQWhOem8=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -3062,25 +3178,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/cee5190f-117d-45bb-86da-a6caba790595?api-version=2024-07-01&t=638840608768606539&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=du74wl3dp37nysNJ2K1bJvEnOTE4xlfUjaLRkdkxxXmneIffTtRJNnWQ8oFfFCh5aa2OuNK88M4yrLBDghxBHXR2MMsMXlp69OZahlr3IIgj2nMRvpo79k-Zl3u58ekoiqZU-aDmF4cOOgD2qFzC8Scg5bMHSuhhxoaP2Zs6xy1eDMQrtyMZvHnRV3iorEpsgTGy6nu6IhEcJ1byvTA4s1nxT1sMozhiAYaDe_A55YxgrZNBb-dx2B6QYxwsoX328Rrvm-vdLaIgSdIxC05Kym3GXg-NrXFBr17w22yYVz-Bbn8W1mJBT8O5TWPivb5TzQ9NYRviVgE_NBHJ-2OCXQ&h=xXvQkhTMTi7ciyxD0mv9JC-WESEs7XcVtzK5Pcpzcik" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/f0585e45-5a45-4088-a406-8deb8222e629?api-version=2024-07-01&t=638854201029110324&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=gJpnSspH4ct4gohI1pYpDNk-OnkY4nm9c6mkLaSfz4Iou418eTWnYGxPUfF8Db9DOOhWPnjlOPEeUmNSncFicRO3mv-sSflEMsjVqMtvcSwUcYbJ2uHWVyXxUKy7v-GmjZkG0rkNEdzHz-qbfOFLksdOKs0LCZBl2yanDdCcuJjP3RJTdoeaAr8-0JLQdu6GTGMyD2UeuiRL6al1Di8q3hFCuKa4jQFJugtCEkvmiaxlEkpYQ-ug2B3k2uq3f-2OPg32_imI_yRM_8nIYPbEW_4ngIou6KtPsSJ0C1UAxE37L3QqW6a__A1kGqfpquKgmeuc5qlbr-JL8mhKnjhqzg&h=9WYV7eZzNgE9YA8HYZBawZRi-HGP1gNKEtY9d4Flhuc" ], "x-ms-request-id": [ - "cee5190f-117d-45bb-86da-a6caba790595" + "f0585e45-5a45-4088-a406-8deb8222e629" ], "x-ms-correlation-request-id": [ - "acc76b62-7387-4080-9c7a-30399f5f4c76" + "07d9dc15-3211-4fc0-b591-db8676f601bf" ], "azure-asyncnotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "c8598cc0-b09c-4ba5-9e79-76b338646743" + "89628114-636e-44be-8465-d46d4a03bf8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/bdc620f5-c3d9-4de2-8d16-c0441bb280e6" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/9fffe057-14d5-4b75-b0d1-004b6c76dc0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -3089,7 +3205,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202756Z:c2587369-038e-4e36-9b86-f868bf07a7c9" + "SOUTHEASTASIA:20250613T140142Z:869d1166-56b7-440c-b00a-f4befed69426" ], "X-Content-Type-Options": [ "nosniff" @@ -3098,10 +3214,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: D81BFE1C398E457AA28FEDF32CA4E82F Ref B: MAA201060513045 Ref C: 2025-05-28T20:27:55Z" + "Ref A: 632DC0DB169047EB9EA6BFF5AE7BC7DC Ref B: MAA201060515011 Ref C: 2025-06-13T14:01:41Z" ], "Date": [ - "Wed, 28 May 2025 20:27:56 GMT" + "Fri, 13 Jun 2025 14:01:42 GMT" ], "Content-Length": [ "317" @@ -3113,16 +3229,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psnrp27652\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652\",\r\n \"captureStartTime\": \"2025-05-28T20:27:31.0706599Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", + "ResponseBody": "{\r\n \"name\": \"psnrp63512\",\r\n \"id\": \"/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512\",\r\n \"captureStartTime\": \"2025-06-13T14:01:12.7231715Z\",\r\n \"packetCaptureStatus\": \"Running\",\r\n \"packetCaptureError\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp27652/stop?api-version=2024-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwMjc2NTIvc3RvcD9hcGktdmVyc2lvbj0yMDI0LTA3LTAx", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512/stop?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTIvc3RvcD9hcGktdmVyc2lvbj0yMDI0LTA3LTAx", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "343b291a-e1d0-4f13-b037-1eedabc3e295" + "edd2112a-1264-497b-a5ee-a88448e31e86" ], "Accept-Language": [ "en-US" @@ -3143,31 +3259,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608792060232&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=PimBHh2217BH8nUr-BCaOaKnh6Z7G9HtjQf048t4beHuCrHAdPmrzM85CMOBZxCkkNRYzrDUDMLwaW2bMv89A9xyreA_tjpdXlSnjlyFzhDJSoabq5pNAx3zR0symCHLoKvCv4oqaRzwFAlI1Zc3dV6-ja2EbewpwXH1mMRfNWerhelk-XD5LRYEeydZ8uq7Arojndvb6OwIoaGc37wxNoXh0EdYjhcNa9vYdBimNtH05PzkNd_TeBLfjVBdLaD8DuzgF-KqZTKnBqWYOe66Z-w7X7Ib8BYmS_zdlVyZVltzGXa40nbWOnqO5tuVotatg6gVXnBA-hOLuswyi4Nq4A&h=9vlmna2uII2TtSH0iHG_V873BHEkhhW_9ZuXhYa3TuU" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201052903756&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=ieKgLpaUxPpXGUUZdrLFjT_bL5pn6uwReuE1Ra2HJHNy5XWcZORiMqqDyyi0BvbQCAtEY5m_eokUirlE-pzbWmf8AY6CfoMHZ1bnN-rIwfXmNflPixsLMyWOuoFolmezISiG9oeskpL1aAJjELI6YDbbAltfI9I-1Kpv6zAWW6uuF1fdlYUfjNL8bLjUt-vfNFdhN4mxhheCUq3gmNVmu8yn8FkX70g3CbJptR6sIU8n7-DA0p452yBSnQn1pOfoFO_3cieS1cQ2nKPVle9zahZsOC9xUyzkE98y7Px02l1zyp_h4I5HSAr7qz9nWdowo9gWpwMYktDRhWUqSH2i6w&h=PyxWKVZWgH7A-QniGcPYBoAVxLBFJNd4lYcjetoe35A" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "5f001021-5011-41a5-805c-7a63667c4707" + "8c691b7e-f3a0-49e4-9417-70854a7361f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608791904103&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dk0FqJvxmoQEoWco2nosZ-zMV2WsZzWrP6eukYNCJIVsWqKBOnp_EYLWCw6OqhcrIuwt06gecDFIBgKxcjrs_ucn0ej0DXCHczzyM4O0LNMVOxGfoDox8nnsEK-pqjOWWF6kfr1ANk9eD9vTojaHrX91iz-6m40HGvKAlYPasKhLqGVe1OHBBRc3BF5E1Y1dPHAorQ4pSe2FA_8mBKQjWF0PJpcBqZQED2D9ny3sb4ypvPPdOkavY8i2K_IFbk2cdoo2y_CZEjl5W8HvS06FBvNfWraRea1_wVchulSWuqjydHUlhRfTUOwCnv-_xdRUUYx8X9Qvtcqx4PJP7Ze8yw&h=CTxP4jVHUiJ5yVnSA6qF-YgPGfWGqpmQUUUmdfeZcwU" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201052591164&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=FHqg17QZlVtY2WLu1TWzGbNLsNGRuwlwS1fEHO4TI28ikzlH01aw0anK_LRqzndKyTCQcJM4BixMmmYU8opPdvJj5bZ_lVQEfMvqJ9L0kxP9kazkGBw-xww-5rUfmzNYRTLMENEta68s9bxd_PetdOLEJee-axtLzcRLIRmcfVrb1Yg7jP1pVXUb4sHVvQYshkPxPnCQwzxV3n3CowO_Ge_D4CS_4mdN5BpzbNR9ZdT7arXg-A-uIBmHnGNX6mMqjbZ7rk0nsIZUywkTn8l2GwaEvM1tIv5lBB0BidcGoPZ7wjbQTe7n5f4rQ98N9lL3yRuYFHmCTjyHh91PII0QPA&h=XKVXIpEyTJ3h-EQxXLfd5S7t2dsP7lK1Pja6ILW3Vns" ], "x-ms-correlation-request-id": [ - "ffdeb112-1b33-4d28-bdd9-644255ac4056" + "73e0bd47-902c-4744-a176-9832869d17fa" ], - "Azure-AsyncNotification": [ + "azure-asyncnotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "20efb2ee-56a7-4e21-acdb-4169f2ab9741" + "e43cb931-5943-4d91-b5ce-48111e982e19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/7f12a991-5a1b-46a3-be1b-240cc3e280ca" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/cdfbd8b7-3287-44f2-933b-5c1016f332ba" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" @@ -3176,7 +3292,7 @@ "11999" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202759Z:ffdeb112-1b33-4d28-bdd9-644255ac4056" + "SOUTHEASTASIA:20250613T140145Z:73e0bd47-902c-4744-a176-9832869d17fa" ], "X-Content-Type-Options": [ "nosniff" @@ -3185,10 +3301,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 5B5B15DC1F5146AAA00BA646BB03BA49 Ref B: MAA201060513033 Ref C: 2025-05-28T20:27:57Z" + "Ref A: 17C0CB7F398048EFA0B3C27DFBFFE707 Ref B: MAA201060514049 Ref C: 2025-06-13T14:01:43Z" ], "Date": [ - "Wed, 28 May 2025 20:27:58 GMT" + "Fri, 13 Jun 2025 14:01:44 GMT" ], "Expires": [ "-1" @@ -3201,8 +3317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608791904103&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dk0FqJvxmoQEoWco2nosZ-zMV2WsZzWrP6eukYNCJIVsWqKBOnp_EYLWCw6OqhcrIuwt06gecDFIBgKxcjrs_ucn0ej0DXCHczzyM4O0LNMVOxGfoDox8nnsEK-pqjOWWF6kfr1ANk9eD9vTojaHrX91iz-6m40HGvKAlYPasKhLqGVe1OHBBRc3BF5E1Y1dPHAorQ4pSe2FA_8mBKQjWF0PJpcBqZQED2D9ny3sb4ypvPPdOkavY8i2K_IFbk2cdoo2y_CZEjl5W8HvS06FBvNfWraRea1_wVchulSWuqjydHUlhRfTUOwCnv-_xdRUUYx8X9Qvtcqx4PJP7Ze8yw&h=CTxP4jVHUiJ5yVnSA6qF-YgPGfWGqpmQUUUmdfeZcwU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVmMDAxMDIxLTUwMTEtNDFhNS04MDVjLTdhNjM2NjdjNDcwNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NzkxOTA0MTAzJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWRrMEZxSnZ4bW9RRW9XY28ybm9zWi16TVYyV3NaeldyUDZldWtZTkNKSVZzV3FLQk9ucF9FWUxXQ3c2T3FoY3JJdXd0MDZnZWNERklCZ0t4Y2pyc191Y24wZWowRFhDSGN6enlNNE8wTE5NVk94R2ZvRG94OG5uc0VLLXBxak9XV0Y2a2ZyMUFOazllRDl2VG9qYUhyWDkxaXotNm00MEhHdktBbFlQYXNLaExxR1ZlMU9IQkJSYzNCRjVFMVkxZFBIQW9yUTRwU2UyRkFfOG1CS1FqV0YwUEpwY0JxWlFFRDJEOW55M3NiNHlwdlBQZE9rYXZZOGkyS19JRmJrMmNkb28yeV9DWkVqbDVXOEh2UzA2RkJ2TmZXcmFSZWExX3dWY2h1bFNXdXFqeWRIVWxoUmZUVU93Q252LV94ZFJVVVl4OFg5UXZ0Y3F4NFBKUDdaZTh5dyZoPUNUeFA0alZIVWlKNXlWblNBNnFGLVlnUEdmV0dxcG1RVVVVbWRmZVpjd1U=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201052591164&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=FHqg17QZlVtY2WLu1TWzGbNLsNGRuwlwS1fEHO4TI28ikzlH01aw0anK_LRqzndKyTCQcJM4BixMmmYU8opPdvJj5bZ_lVQEfMvqJ9L0kxP9kazkGBw-xww-5rUfmzNYRTLMENEta68s9bxd_PetdOLEJee-axtLzcRLIRmcfVrb1Yg7jP1pVXUb4sHVvQYshkPxPnCQwzxV3n3CowO_Ge_D4CS_4mdN5BpzbNR9ZdT7arXg-A-uIBmHnGNX6mMqjbZ7rk0nsIZUywkTn8l2GwaEvM1tIv5lBB0BidcGoPZ7wjbQTe7n5f4rQ98N9lL3yRuYFHmCTjyHh91PII0QPA&h=XKVXIpEyTJ3h-EQxXLfd5S7t2dsP7lK1Pja6ILW3Vns", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzhjNjkxYjdlLWYzYTAtNDllNC05NDE3LTcwODU0YTczNjFmNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAxMDUyNTkxMTY0JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPUZIcWcxN1FabFZ0WTJXTHUxVFd6R2JOTHNOR1J1d2x3UzFmRUhPNFRJMjhpa3psSDAxYXcwYW5LX0xScXpuZEt5VENRY0pNNEJpeE1tbVlVOG9wUGR2Smo1YlpfbFZRRWZNdnFKOUwwa3hQOWthemtHQncteHd3LTVyVWZtek5ZUlRMTUVORXRhNjhzOWJ4ZF9QZXRkT0xFSmVlLWF4dEx6Y1JMSVJtY2ZWcmIxWWc3alAxcFZYVWI0c0hWdlFZc2hrUHhQbkNRd3p4VjNuM0Nvd09fR2VfRDRDU180bWRONUJwemJOUjlaZFQ3YXJYZy1BLXVJQm1IbkdOWDZtTXFqYlo3cmswbnNJWlV5d2tUbjhsMkd3YUV2TTF0SXY1bEJCMEJpZGNHb1BaN3dqYlFUZTduNWY0clE5OE45bEwzeVJ1WUZIbUNUanlIaDkxUElJMFFQQSZoPVhLVlhJcEV5VEozaC1FUXhYTGZkNVM3dDJkc1A3bEsxUGphNklMVzNWbnM=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -3221,19 +3337,19 @@ "no-cache" ], "x-ms-request-id": [ - "282dc4c7-b5f1-4744-85c9-dfa4e5081ab6" + "2a646ef8-0cab-405b-b9f4-20284fab3e57" ], "x-ms-correlation-request-id": [ - "d64a9156-3fd2-41e1-b4b6-21ba891510cf" + "ef8e3a1c-3f94-495a-95c2-78036bb621fe" ], "x-ms-arm-service-request-id": [ - "c17c2ef9-8e39-4477-aad4-0ee77345da35" + "bf6128cc-a568-42d3-98b0-193f8b40663e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/6a33b88b-8b6f-4a3e-9855-992b3c21eada" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/498bb8fe-4c1f-4d46-a048-d2a06a7aef33" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -3242,7 +3358,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202810Z:d64a9156-3fd2-41e1-b4b6-21ba891510cf" + "SOUTHEASTASIA:20250613T140156Z:ef8e3a1c-3f94-495a-95c2-78036bb621fe" ], "X-Content-Type-Options": [ "nosniff" @@ -3251,10 +3367,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: E197676F034040DFBE93425CF7EF422A Ref B: MAA201060513033 Ref C: 2025-05-28T20:28:09Z" + "Ref A: F57C534CA57F4CD19D452F6AD615BD4C Ref B: MAA201060514049 Ref C: 2025-06-13T14:01:55Z" ], "Date": [ - "Wed, 28 May 2025 20:28:09 GMT" + "Fri, 13 Jun 2025 14:01:55 GMT" ], "Content-Length": [ "38" @@ -3270,8 +3386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608792060232&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=PimBHh2217BH8nUr-BCaOaKnh6Z7G9HtjQf048t4beHuCrHAdPmrzM85CMOBZxCkkNRYzrDUDMLwaW2bMv89A9xyreA_tjpdXlSnjlyFzhDJSoabq5pNAx3zR0symCHLoKvCv4oqaRzwFAlI1Zc3dV6-ja2EbewpwXH1mMRfNWerhelk-XD5LRYEeydZ8uq7Arojndvb6OwIoaGc37wxNoXh0EdYjhcNa9vYdBimNtH05PzkNd_TeBLfjVBdLaD8DuzgF-KqZTKnBqWYOe66Z-w7X7Ib8BYmS_zdlVyZVltzGXa40nbWOnqO5tuVotatg6gVXnBA-hOLuswyi4Nq4A&h=9vlmna2uII2TtSH0iHG_V873BHEkhhW_9ZuXhYa3TuU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzVmMDAxMDIxLTUwMTEtNDFhNS04MDVjLTdhNjM2NjdjNDcwNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODQwNjA4NzkyMDYwMjMyJmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPVBpbUJIaDIyMTdCSDhuVXItQkNhT2FLbmg2WjdHOUh0alFmMDQ4dDRiZUh1Q3JIQWRQbXJ6TTg1Q01PQlp4Q2trTlJZenJEVURNTHdhVzJiTXY4OUE5eHlyZUFfdGpwZFhsU25qbHlGemhESlNvYWJxNXBOQXgzelIwc3ltQ0hMb0t2Q3Y0b3FhUnp3RkFsSTFaYzNkVjYtamEyRWJld3B3WEgxbU1SZk5XZXJoZWxrLVhENUxSWUVleWRaOHVxN0Fyb2puZHZiNk93SW9hR2MzN3d4Tm9YaDBFZFlqaGNOYTl2WWRCaW1OdEgwNVB6a05kX1RlQkxmalZCZExhRDhEdXpnRi1LcVpUS25CcVdZT2U2NlotdzdYN0liOEJZbVNfemRsVnlaVmx0ekdYYTQwbmJXT25xTzV0dVZvdGF0ZzZnVlhuQkEtaE9MdXN3eWk0TnE0QSZoPTl2bG1uYTJ1SUkyVHRTSDBpSEdfVjg3M0JIRWtoaFdfOVp1WGhZYTNUdVU=", + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201052903756&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=ieKgLpaUxPpXGUUZdrLFjT_bL5pn6uwReuE1Ra2HJHNy5XWcZORiMqqDyyi0BvbQCAtEY5m_eokUirlE-pzbWmf8AY6CfoMHZ1bnN-rIwfXmNflPixsLMyWOuoFolmezISiG9oeskpL1aAJjELI6YDbbAltfI9I-1Kpv6zAWW6uuF1fdlYUfjNL8bLjUt-vfNFdhN4mxhheCUq3gmNVmu8yn8FkX70g3CbJptR6sIU8n7-DA0p452yBSnQn1pOfoFO_3cieS1cQ2nKPVle9zahZsOC9xUyzkE98y7Px02l1zyp_h4I5HSAr7qz9nWdowo9gWpwMYktDRhWUqSH2i6w&h=PyxWKVZWgH7A-QniGcPYBoAVxLBFJNd4lYcjetoe35A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzhjNjkxYjdlLWYzYTAtNDllNC05NDE3LTcwODU0YTczNjFmNz9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAxMDUyOTAzNzU2JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWllS2dMcGFVeFBwWEdVVVpkckxGalRfYkw1cG42dXdSZXVFMVJhMkhKSE55NVhXY1pPUmlNcXFEeXlpMEJ2YlFDQXRFWTVtX2Vva1VpcmxFLXB6YldtZjhBWTZDZm9NSFoxYm5OLXJJd2ZYbU5mbFBpeHNMTXlXT3VvRm9sbWV6SVNpRzlvZXNrcEwxYUFKakVMSTZZRGJiQWx0Zkk5SS0xS3B2NnpBV1c2dXVGMWZkbFlVZmpOTDhiTGpVdC12Zk5GZGhONG14aGhlQ1VxM2dtTlZtdTh5bjhGa1g3MGczQ2JKcHRSNnNJVThuNy1EQTBwNDUyeUJTblFuMXBPZm9GT18zY2llUzFjUTJuS1BWbGU5emFoWnNPQzl4VXl6a0U5OHk3UHgwMmwxenlwX2g0STVIU0FyN3F6OW5XZG93bzlnV3B3TVlrdERSaFdVcVNIMmk2dyZoPVB5eFdLVlpXZ0g3QS1RbmlHY1BZQm9BVnhMQkZKTmQ0bFljamV0b2UzNUE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ @@ -3290,28 +3406,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608908378427&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=YeCCuWnVlRcnMyU1FPNllDOG7a465lzIhHHvSs5M7IBz1WprBxkEyHCZ3t5cyYdNuKatSNpM2NFyht_R-wiN-6aIr7va6YbwkuM56UkdM0-36DHCq8TerR6YVsHImoT5aU5WNPYHHG9xHgAaYooIRq79IM9RH36hrgLKcugvh3tYR41mV7dSn3Qsnhl2_tkWiIIpBx_Y13B3a0QWFn4LW8cEC7AtvkpNcWdjfhCAcgdd_5IXuG8E-eocr4Xl98MUKi4077mywgvRJ5_KgFBz9Mtv3Zi9kqjy3giPhH7ZOAxgAllezW3iZFsJXNO-EJ-zZJpg3FLO68bLVGF1_hSjKA&h=q_ULGoBRTroY_3IQ-iB1syNXWcRukgPFgmYcEHnvIvA" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201173815030&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=S_Buzsezg4efm3bpby-tl-7ninUFjBFD1hblcc0WW0BwyMwb2DVaJZGnJaoOgapnGiEjOyQ6w9HjfPPnxA9vKbcOkpwzkJpplXQN0e2clqqNijnmDRX6zgy63PHBSYcW80uBOnO-IMwGOgS8MAVUqJrv5t01cS0THj56OkBDS4WutV123D2YQsjMsMADW2dWXdVf4TU-u-p0NYkn4rbw3rjtL2B4ytKcQ37C-5v4VN1L2J4VtX1uS1oVVt5xv-XZYaQTORFGAn3NhHoX3SQLKo1wKteBpOJb0kKVbtCo3XO35jT2iVJ-x7qbTMt6O4ny8axV-9Metpai9vvZnBHcVQ&h=7OKCje_Ot8W52zMJkWvHfncgLJFuaJrH8jsUNCafATY" ], "x-ms-request-id": [ - "5f001021-5011-41a5-805c-7a63667c4707" + "8c691b7e-f3a0-49e4-9417-70854a7361f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/5f001021-5011-41a5-805c-7a63667c4707?api-version=2024-07-01&t=638840608908222191&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=b1qqV82e7H7L3YNTkANzaYxdxts3b4VvzrqdegFxKyYLE9gjKb7UsdNBg2jxvSNJLHkAWKn2X8l0Ubf6xsjb8fSZuKjudegfPFfX0m6S_SPLQdB6Zz3jQ9hHHMEmTZZdzLQsgR4a3UccBqvBU1-RRxX2puBKe1jSwBGomp_Cijb7Nl-qMQMUU1gigwwHsnfPthQg0ol-ClZYBQeabNtY64nAAhlskSyGnRk7lJkl1cRt-g3uJbVy-AAn2GS1bfiTAtnYxiPNBkohz9IINcopxk3uaJ6G62cnaHEHD6jeqaNv-r-ZCb0oFRrhmxbrX2O9U_L4YsEDDH09w-Nr78r1uA&h=pTv2UkPcLK3nvMxo114-ssAMV_rSOHpmVd-SKtpMkE0" + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/8c691b7e-f3a0-49e4-9417-70854a7361f7?api-version=2024-07-01&t=638854201173815030&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=shfUf7FC1uG_IaN_-aCmaXk-O6HJ5r6_yzXCi7etJEquZ3htUuWPGwz4SGkXvE7lkvekfQNnvkGay_mbsJnovR5GK_SPUE0v3cx_z7V9Zhg4LnZB3TRX-HG9i3VHvB_rQmEsXrGcjTiOjWYyWfc9-ZnGJdYv3vTj014vDpIHTpdnB4Ry-dBvTORCfKJBXkOKT99oWCnsna4QKYJdYHO3UruJsXIWPOB9ZHSb3iMXTb9JBX-d81K7y9z0NHlCArB6ODHJDhTT6pdZu0M4zRHYNjfugDvp-H14hbC48vmbbGfKud9yKVvkSoeKDwoOU7EdM5LjBBqX-W1FtlDsqim58g&h=n-prhk6K3zFQVc096yY2X4h3MZTTvUpQRJqwTXDVmxQ" ], "x-ms-correlation-request-id": [ - "ffdeb112-1b33-4d28-bdd9-644255ac4056" + "73e0bd47-902c-4744-a176-9832869d17fa" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "20efb2ee-56a7-4e21-acdb-4169f2ab9741" + "e43cb931-5943-4d91-b5ce-48111e982e19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-operation-identifier": [ - "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/593308ef-e4ec-44d2-9a26-3766c03e8577" + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/d3423c9c-aa9f-4565-be21-281c2a80d8a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" @@ -3320,7 +3436,7 @@ "16499" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20250528T202810Z:5c234544-f360-49b0-90aa-c208edf436c7" + "SOUTHEASTASIA:20250613T140157Z:51f2236b-00d6-4f42-a949-fc778258861e" ], "X-Content-Type-Options": [ "nosniff" @@ -3329,10 +3445,10 @@ "CONFIG_NOCACHE" ], "X-MSEdge-Ref": [ - "Ref A: 4DD8B30E4C2D4006B13B1DBC1C9F504A Ref B: MAA201060513033 Ref C: 2025-05-28T20:28:10Z" + "Ref A: AD2DCF1604CA4916BAD17ABA2F6BB343 Ref B: MAA201060514049 Ref C: 2025-06-13T14:01:56Z" ], "Date": [ - "Wed, 28 May 2025 20:28:10 GMT" + "Fri, 13 Jun 2025 14:01:56 GMT" ], "Content-Length": [ "4" @@ -3346,15 +3462,243 @@ }, "ResponseBody": "null", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus/packetCaptures/psnrp63512?api-version=2024-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Jlc291cmNlR3JvdXBzL05ldHdvcmtXYXRjaGVyUkcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtXYXRjaGVycy9OZXR3b3JrV2F0Y2hlcl93ZXN0Y2VudHJhbHVzL3BhY2tldENhcHR1cmVzL3BzbnJwNjM1MTI/YXBpLXZlcnNpb249MjAyNC0wNy0wMQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01c08757-d822-43d8-a8ca-ae80690d6564" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201187695084&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=ruGLiTiDvbiZOTa1MBKBnVGe-FzJ0Ej7KaTpfu-EnFjm1OjQNPkZG16OCz__Hj37ye2uAxHzTMnnX6cHS9WAl5QS9vAeff1bIqQKplBMpnJfW4jdIoY48Fpi391-8NrDhCxPg74GbkfC1clZnuLW16CJXW0wG1N4-V2XuwFdb5-yJd6yhVRgsMnN9drbYz04FHxisw12OKhqNGLxPZ2egmmDAG8w1zAucxi3I43xKg5IHL09JhuITvQ9IFSz36SGu4iij2MXEMtyzp6Kg8lVb5ltXpmO4tFao2SqNr0rcT0RlE3hxEtmNYOhcMMMZ4boDHHSapklFl54OiBl2eDUxA&h=4rovTxT3PRBExGJKlc0FaVzpKWiitaK57NwGD1QE_wc" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "24585d99-ce0a-4fca-a46c-4de77e171f11" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201187382589&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dmr57HmECFyO71ow8qk2V4BFwYu2VesJk9m_BIqG_DkzkfDm9K8Mir1JY9ahCz1Xd3yOJXV_BlUhacJK6Y66xWbX4FrtNW1ppak-EKHM0ByrIRJD27fMwjlpiXk_PNSf00VfWxERKfOK_Zh-_4vJuBFpa3dFKmckZNPh1MdzRkbeCgq9v7R1OaQcgpoHPOlKc0pjHqzfRW7gXo5hc6ssHMSOLyMVHLSvJTEvUlE3M6krlJZxAu2TrSOmc8rvKCjo3PCqESijyLB94ri92ajY7QJJMwr2aSBKtgnQO2YcX75qW_P5V85dAzfIeYuAnJy8N2Ma7kRmOppfT3p63LXsmQ&h=BrNIpvJqbVaWlLXbQBbp5H_AtZWH0Jqb_juRFHbfhA8" + ], + "x-ms-correlation-request-id": [ + "153856fe-d746-41c3-a3da-61b9a2b2eafd" + ], + "azure-asyncnotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "d97daadc-73e7-42fd-859d-88e9e4725ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/f615e300-1f4b-4f10-8bd1-a82e60f79bf4" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250613T140158Z:153856fe-d746-41c3-a3da-61b9a2b2eafd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3D4E96B5A414927BF1388045016E5A8 Ref B: MAA201060516053 Ref C: 2025-06-13T14:01:58Z" + ], + "Date": [ + "Fri, 13 Jun 2025 14:01:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201187382589&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=dmr57HmECFyO71ow8qk2V4BFwYu2VesJk9m_BIqG_DkzkfDm9K8Mir1JY9ahCz1Xd3yOJXV_BlUhacJK6Y66xWbX4FrtNW1ppak-EKHM0ByrIRJD27fMwjlpiXk_PNSf00VfWxERKfOK_Zh-_4vJuBFpa3dFKmckZNPh1MdzRkbeCgq9v7R1OaQcgpoHPOlKc0pjHqzfRW7gXo5hc6ssHMSOLyMVHLSvJTEvUlE3M6krlJZxAu2TrSOmc8rvKCjo3PCqESijyLB94ri92ajY7QJJMwr2aSBKtgnQO2YcX75qW_P5V85dAzfIeYuAnJy8N2Ma7kRmOppfT3p63LXsmQ&h=BrNIpvJqbVaWlLXbQBbp5H_AtZWH0Jqb_juRFHbfhA8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzI0NTg1ZDk5LWNlMGEtNGZjYS1hNDZjLTRkZTc3ZTE3MWYxMT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAxMTg3MzgyNTg5JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPWRtcjU3SG1FQ0Z5Tzcxb3c4cWsyVjRCRndZdTJWZXNKazltX0JJcUdfRGt6a2ZEbTlLOE1pcjFKWTlhaEN6MVhkM3lPSlhWX0JsVWhhY0pLNlk2NnhXYlg0RnJ0TlcxcHBhay1FS0hNMEJ5cklSSkQyN2ZNd2pscGlYa19QTlNmMDBWZld4RVJLZk9LX1poLV80dkp1QkZwYTNkRkttY2taTlBoMU1kelJrYmVDZ3E5djdSMU9hUWNncG9IUE9sS2MwcGpIcXpmUlc3Z1hvNWhjNnNzSE1TT0x5TVZITFN2SlRFdlVsRTNNNmtybEpaeEF1MlRyU09tYzhydktDam8zUENxRVNpanlMQjk0cmk5MmFqWTdRSkpNd3IyYVNCS3RnblFPMlljWDc1cVdfUDVWODVkQXpmSWVZdUFuSnk4TjJNYTdrUm1PcHBmVDNwNjNMWHNtUSZoPUJyTklwdkpxYlZhV2xMWGJRQmJwNUhfQXRaV0gwSnFiX2p1UkZIYmZoQTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "44c9d754-2db1-46d9-b55a-e6543f081423" + ], + "x-ms-correlation-request-id": [ + "a3bbafea-6dcb-4a4a-a2b7-ce3f694fdbc6" + ], + "x-ms-arm-service-request-id": [ + "924be794-6965-4011-b0c3-2ffd3c328729" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/84a6617a-f7d6-428d-950d-71e0d23779c6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250613T140209Z:a3bbafea-6dcb-4a4a-a2b7-ce3f694fdbc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 76E085FC9266429F8903004F9BE5297F Ref B: MAA201060516053 Ref C: 2025-06-13T14:02:09Z" + ], + "Date": [ + "Fri, 13 Jun 2025 14:02:08 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201187695084&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=ruGLiTiDvbiZOTa1MBKBnVGe-FzJ0Ej7KaTpfu-EnFjm1OjQNPkZG16OCz__Hj37ye2uAxHzTMnnX6cHS9WAl5QS9vAeff1bIqQKplBMpnJfW4jdIoY48Fpi391-8NrDhCxPg74GbkfC1clZnuLW16CJXW0wG1N4-V2XuwFdb5-yJd6yhVRgsMnN9drbYz04FHxisw12OKhqNGLxPZ2egmmDAG8w1zAucxi3I43xKg5IHL09JhuITvQ9IFSz36SGu4iij2MXEMtyzp6Kg8lVb5ltXpmO4tFao2SqNr0rcT0RlE3hxEtmNYOhcMMMZ4boDHHSapklFl54OiBl2eDUxA&h=4rovTxT3PRBExGJKlc0FaVzpKWiitaK57NwGD1QE_wc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzlhY2Q5NWQtMzRmZS00NjAzLWI1MGEtODljMjdjMDQ1YjAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzI0NTg1ZDk5LWNlMGEtNGZjYS1hNDZjLTRkZTc3ZTE3MWYxMT9hcGktdmVyc2lvbj0yMDI0LTA3LTAxJnQ9NjM4ODU0MjAxMTg3Njk1MDg0JmM9TUlJSGh6Q0NCbS1nQXdJQkFnSVRmQWVERW5QV19LeEpicThFamdBQUI0TVNjekFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalV3TkRJd01UVXlNREkzV2hjTk1qVXhNREUzTVRVeU1ESTNXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTE8xU0F2dDRESTdGeHhCbVpCY2ZvS0RMaVhwUzhVNWFkWmJSbFJ2Vm0tRWNBV3FHTm5WbzFBeGFYdTNnaEtNWTk1THhmZmh2Y1lBWjU2V2hnT3hBX2dwQVV6bTR0MHlXMGFWenY3dkFPV1pISUcxZnZUY1dZX3NIQ2t1VHlDTkFjUmJOYmFxYmlkYUs5Wk9UUTE5YmFVUTI2a1ZrUDd0alRpNkRXV1JsTTI1ZDRZUWNHYVdKb0J3VXRvbC1oZ0I1Wl9yVk1salJGNVExVDlfM1lwUkJ3NTdTcEh2bWIzMEpOUVNwbmR5ZXUtLUlwOHBNd3BOYWlJUkY3MEc4V2ZiVEJvSmhScU5xTkFLQkxVM0NBVlY0SDZsWXJYdFNLLWdrWkMwRXpqWjR6ZV9YVkRHQmQxc09Qc2JNeDRhUWdaRWl1REp1dWs5ZXFUenp1cjNJRFVkclAwQ0F3RUFBYU9DQkhRd2dnUndNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlNSckFhNzFrVnBwZW9ab25ZN1FQeV9SN1hXUXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUNoUVh3UzBfRWFNYjdHM0JXR0Rlb05oQUFFYW9La0pWVXk1SFZHeVdLQURGbTZUcDJXaWR3T0lNb091LUl1b0E2MzRPUko3Ykl3c0MyV2hVQTBaOC1jMkFBRDk1NmRBdENrbjVwRUJYU3F3dUtNTTNsOUtPQ2xBWTFSaUFRY1AtR1d0bWJfbXFac3BPNzhHSGFxLW13aXlJRFVJQ00tdVpsLXFSNlVWdDZyTG41eFBxSE5rZW54cnNsU19HM0lKOXlDVjFzZmx4aHo5M0I3VlI5SDdCdE94ZF9ucVpPRDV1U1YzT3BQbkFUVFJPMEtCM1ZCYlowS3F2ZHRXb0hqTnl3THFNdWhKVXVmSHcyem1sUS1ZajNuZGhhX3lUdk9RbFQtODVpa1NveVdJMFA0X0dlRXdYOVJka2lWSFZ6eDNnUjhIekZLa0pYT3dSdnhRRV85T3ZfMCZzPXJ1R0xpVGlEdmJpWk9UYTFNQktCblZHZS1GekowRWo3S2FUcGZ1LUVuRmptMU9qUU5Qa1pHMTZPQ3pfX0hqMzd5ZTJ1QXhIelRNbm5YNmNIUzlXQWw1UVM5dkFlZmYxYklxUUtwbEJNcG5KZlc0amRJb1k0OEZwaTM5MS04TnJEaEN4UGc3NEdia2ZDMWNsWm51TFcxNkNKWFcwd0cxTjQtVjJYdXdGZGI1LXlKZDZ5aFZSZ3NNbk45ZHJiWXowNEZIeGlzdzEyT0tocU5HTHhQWjJlZ21tREFHOHcxekF1Y3hpM0k0M3hLZzVJSEwwOUpodUlUdlE5SUZTejM2U0d1NGlpajJNWEVNdHl6cDZLZzhsVmI1bHRYcG1PNHRGYW8yU3FOcjByY1QwUmxFM2h4RXRtTllPaGNNTU1aNGJvREhIU2Fwa2xGbDU0T2lCbDJlRFV4QSZoPTRyb3ZUeFQzUFJCRXhHSktsYzBGYVZ6cEtXaWl0YUs1N053R0QxUUVfd2M=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/8.0.1625.21506", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Network.NetworkManagementClient/27.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operationResults/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201307888727&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=jUEPBwLOpZxKEianhqAVyUfw6sgtJ3RwAmVX0shlg0o4baMSxTfry073xqAjihb49Epjyxp1PcsjL1ey9G8RavwjEsp_kP2SMbYZJCmYHDsDrU9QKc2gmkcS_gVOQSyJtF3CXj3vLfcCcnNSBKu5-SSKBhf3c2zRV764dVqrrkRnXrLyv0DfOoZ2cT06RrmoyOfhHOzgdJWpt3QCh720tL4rgDdXwJbFYuu9uoZeru1uca2qWwC9yCaAwOmAlTz9ZHGCSwhqmtFpB0jDrVkwbrBsLslTQrSgZpn2tWbIAFwB2PjJQM_abrxkIjqWZg89LOEiX1MUFwD96A6vRJ574w&h=B6DEnfcs7AVAfiwQhqpfeyAx5z_LUipOLz76Xfky--Q" + ], + "x-ms-request-id": [ + "24585d99-ce0a-4fca-a46c-4de77e171f11" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/c9acd95d-34fe-4603-b50a-89c27c045b02/providers/Microsoft.Network/locations/westcentralus/operations/24585d99-ce0a-4fca-a46c-4de77e171f11?api-version=2024-07-01&t=638854201307732454&c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0&s=f2GkX0bNR4mat4DE15oVQi5vugQOC2x5pOw23f4i7MoNZo70_FP7GwVWwbWnQLHFSQdCdJC9KWBl72JqluAbCQ8G4uRzZVFqSYkF2qg7XUHBgtMWtY74kg8sWPsX_fPGDA75fJfhK1LWvC4r2aQlMMCKHlyxzIA8z-1NI2VHzDbUdP37vQZ0saK6qMNmX2QxcshevSQO41yVIOSs-WRIikW7QjBqqPIg6trotJP2p3E5hEQ8ki58OztxNhmP2cXorTylNfzU8j5N8EH_QIpAkOQw_shqg8X5aMjTBaLBTHL84XBEUXrADqrC8Cne1S7mgrjLfasICOJTwok6ib-xgw&h=Jkt0HWdhmdA9R0z8v6w5A7NsZAL5xCnolQhT3bRm0a0" + ], + "x-ms-correlation-request-id": [ + "153856fe-d746-41c3-a3da-61b9a2b2eafd" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "d97daadc-73e7-42fd-859d-88e9e4725ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-operation-identifier": [ + "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=e86af0c8-1aa3-4bf8-b7ea-8a5e5374d96d/southeastasia/3a80e4a6-ad8f-4667-b650-ed9fc691b568" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250613T140210Z:e03d1226-cdbe-4d02-b2ae-39f78fb3cd02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91E4D2D2A0064EB889AA7921176AD700 Ref B: MAA201060516053 Ref C: 2025-06-13T14:02:09Z" + ], + "Date": [ + "Fri, 13 Jun 2025 14:02:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 } ], "Names": { "Test-PacketCaptureV2WithRingBuffer": [ - "psnrp644", - "psnrp9690", - "psnrp6109", - "psnrp1519", - "psnrp2765" + "psnrp3001", + "psnrp9747", + "psnrp6238", + "psnrp2356", + "psnrp6351" ] }, "Variables": {