diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs index b0c3f12a26c7..36d1be401193 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs @@ -35,6 +35,14 @@ public void TestCortexCRUD() TestRunner.RunTestScript("Test-CortexCRUD"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.virtualwan)] + public void TestRoutingIntentCRUD() + { + TestRunner.RunTestScript("Test-RoutingIntentCRUD"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.brooklynft)] diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index d2d24691e2cf..ebb0e4356e29 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -341,6 +341,101 @@ function Test-CortexCRUD } } +function Test-RoutingIntentCRUD +{ + # Setup + $rgName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap" + $virtualWanName = Get-ResourceName + $virtualHubName = Get-ResourceName + $firewallName = "testFirewall1" + $riName = "testRoutingIntent1" + $privatePolicyName = "PrivateTraffic" + $internetPolicyName = "PublicTraffic" + + $storeName = 'blob' + $rgName + + try + { + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgName -Location $rglocation + + # Create the Virtual Wan + $createdVirtualWan = New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic + $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName + Assert-AreEqual $rgName $virtualWan.ResourceGroupName + Assert-AreEqual $virtualWanName $virtualWan.Name + + # Create the Virtual Hub + $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "192.168.1.0/24" -VirtualWan $virtualWan -HubRoutingPreference "ASPath" + $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName + Assert-AreEqual $rgName $virtualHub.ResourceGroupName + Assert-AreEqual $virtualHubName $virtualHub.Name + Assert-AreEqual "192.168.1.0/24" $virtualHub.AddressPrefix + + # Create a firewall in the Virtual hub + $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 + $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + New-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Location $rglocation -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses + $firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName + + $policy1 = New-AzRoutingPolicy -Name $privatePolicyName -Destination @("PrivateTraffic") -NextHop $firewall.Id + $policy2 = New-AzRoutingPolicy -Name $internetPolicyName -Destination @("Internet") -NextHop $firewall.Id + New-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName -RoutingPolicy @($policy1, $policy2) + $routingIntent = Get-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName + Assert-AreEqual $routingIntent.RoutingPolicies.Count 2 + Assert-AreEqual $routingIntent.Name $riName + + $riPolicy = Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name $privatePolicyName + Assert-AreEqual $riPolicy.Destinations.Count 1 + Assert-AreEqual $riPolicy.NextHop $firewall.Id + + $policy3 = New-AzRoutingPolicy -Name $privatePolicyName -Destination @("PrivateTraffic") -NextHop $firewall.Id + $routingIntent = Set-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName -RoutingPolicy @($policy3) + Assert-AreEqual $routingIntent.RoutingPolicies.Count 1 + $riPolicy = Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name $privatePolicyName + Assert-AreEqual $riPolicy.Destinations.Count 1 + + $routingIntent = Get-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName + Add-AzRoutingPolicy -Name $internetPolicyName -RoutingIntent $routingIntent -Destination @("Internet") -NextHop $firewall.Id + Set-AzRoutingIntent -InputObject $routingIntent + $routingIntent = Get-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName + Assert-AreEqual $routingIntent.RoutingPolicies.Count 2 + $riPolicy = Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name $internetPolicyName + Assert-AreEqual $riPolicy.Destinations.Count 1 + + Remove-AzRoutingPolicy -Name $internetPolicyName -RoutingIntent $routingIntent + Set-AzRoutingIntent -InputObject $routingIntent + $routingIntent = Get-AzRoutingIntent -Name $riName -VirtualHub $virtualHub + Assert-AreEqual $routingIntent.RoutingPolicies.Count 1 + $riPolicy = Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name $privatePolicyName + Assert-AreEqual $riPolicy.Destinations.Count 1 + + Set-AzRoutingPolicy -Name $privatePolicyName -RoutingIntent $routingIntent -Destination @("Internet", "PrivateTraffic") -NextHop $firewall.Id + Set-AzRoutingIntent -InputObject $routingIntent + $routingIntent = Get-AzRoutingIntent -Name $riName -VirtualHub $virtualHub + Assert-AreEqual $routingIntent.RoutingPolicies.Count 1 + $riPolicy = Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name $privatePolicyName + Assert-AreEqual $riPolicy.Destinations.Count 2 + + $delete = Remove-AzRoutingIntent -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $riName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru + Assert-AreEqual $True $delete + } + finally + { + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS VpnSiteIsSecurity diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestRoutingIntentCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestRoutingIntentCRUD.json new file mode 100644 index 000000000000..8d11a8fcc9a4 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestRoutingIntentCRUD.json @@ -0,0 +1,10750 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps7209?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNzIwOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97811b96-1c9a-4a19-8197-d4ab71df17c9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "dac423a0-e2e8-4fb3-b451-bc5379938a34" + ], + "x-ms-correlation-request-id": [ + "dac423a0-e2e8-4fb3-b451-bc5379938a34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045617Z:dac423a0-e2e8-4fb3-b451-bc5379938a34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:16 GMT" + ], + "Content-Length": [ + "222" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209\",\r\n \"name\": \"ps7209\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Created\": \"2022-05-29T04:56:16.0638101Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cac7714-1767-40a7-a1ac-8ea6aeeb5016" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c119be12-9363-459d-bb1d-488296540a17" + ], + "x-ms-correlation-request-id": [ + "c119be12-9363-459d-bb1d-488296540a17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045617Z:c119be12-9363-459d-bb1d-488296540a17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "214" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps4373' under resource group 'ps7209' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cac7714-1767-40a7-a1ac-8ea6aeeb5016" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"797b8ea1-7020-4cf5-8fda-911462596778\"" + ], + "x-ms-request-id": [ + "eec7d331-0d64-40fb-bc65-47539a21803c" + ], + "x-ms-correlation-request-id": [ + "a7f0a139-6ee3-4c4d-b04d-2ca14298e838" + ], + "x-ms-arm-service-request-id": [ + "e436d053-8d2f-4961-b075-020374de7999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045631Z:a7f0a139-6ee3-4c4d-b04d-2ca14298e838" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:31 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4373\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\",\r\n \"etag\": \"W/\\\"797b8ea1-7020-4cf5-8fda-911462596778\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cac7714-1767-40a7-a1ac-8ea6aeeb5016" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"797b8ea1-7020-4cf5-8fda-911462596778\"" + ], + "x-ms-request-id": [ + "8d9406ff-ef98-44f6-9779-f8c575495983" + ], + "x-ms-correlation-request-id": [ + "35432c8e-4bdf-4425-a005-5b564aa92c0f" + ], + "x-ms-arm-service-request-id": [ + "faf96f13-8f76-4485-bdea-19d91bb3cedc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045632Z:35432c8e-4bdf-4425-a005-5b564aa92c0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:32 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4373\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\",\r\n \"etag\": \"W/\\\"797b8ea1-7020-4cf5-8fda-911462596778\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a15273f6-38c6-49b3-8fd9-83f55d5157b3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"797b8ea1-7020-4cf5-8fda-911462596778\"" + ], + "x-ms-request-id": [ + "79712b02-0e94-4abc-bd67-b1f70e43a4c7" + ], + "x-ms-correlation-request-id": [ + "959a17ac-34de-4982-aca9-3231ce8e8152" + ], + "x-ms-arm-service-request-id": [ + "f5a7203c-8503-4df6-8c7a-5293fb0705c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045632Z:959a17ac-34de-4982-aca9-3231ce8e8152" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:32 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4373\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\",\r\n \"etag\": \"W/\\\"797b8ea1-7020-4cf5-8fda-911462596778\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"797b8ea1-7020-4cf5-8fda-911462596778\"" + ], + "x-ms-request-id": [ + "dd858882-36b7-4171-bd86-b4fa56e2317a" + ], + "x-ms-correlation-request-id": [ + "90180c1a-e457-4d4a-8c8c-f48fe0ceb668" + ], + "x-ms-arm-service-request-id": [ + "1a03d65d-f0ee-411f-9c4b-2acc7a284e06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045632Z:90180c1a-e457-4d4a-8c8c-f48fe0ceb668" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:32 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4373\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\",\r\n \"etag\": \"W/\\\"797b8ea1-7020-4cf5-8fda-911462596778\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cac7714-1767-40a7-a1ac-8ea6aeeb5016" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "162" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7082954c-0c0a-4578-a882-90804f708346" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/7082954c-0c0a-4578-a882-90804f708346?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "b8472dae-35f2-41ec-9337-b6f1d2a260db" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "de86c391-0681-4898-9313-82abb2b2b72d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045621Z:b8472dae-35f2-41ec-9337-b6f1d2a260db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:20 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4373\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\",\r\n \"etag\": \"W/\\\"e58d8e77-467a-4538-bf0e-e65e784141d3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/7082954c-0c0a-4578-a882-90804f708346?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzcwODI5NTRjLTBjMGEtNDU3OC1hODgyLTkwODA0ZjcwODM0Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cac7714-1767-40a7-a1ac-8ea6aeeb5016" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "541a3c37-36ae-4fd2-9f2b-6e604af5f536" + ], + "x-ms-correlation-request-id": [ + "06dfab4e-15ed-4e26-94fe-db8e4cf20770" + ], + "x-ms-arm-service-request-id": [ + "81b6779b-b8f0-4bc8-a472-3d935d5e0c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045631Z:06dfab4e-15ed-4e26-94fe-db8e4cf20770" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:31 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e55d201a-53d0-4c70-90f6-06d4470534c2" + ], + "x-ms-correlation-request-id": [ + "e55d201a-53d0-4c70-90f6-06d4470534c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045632Z:e55d201a-53d0-4c70-90f6-06d4470534c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "214" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps5072' under resource group 'ps7209' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08515f93-8930-4f6d-a4bb-0acb045ace69" + ], + "x-ms-correlation-request-id": [ + "d866abf2-ca45-472e-848f-ad4aee477b27" + ], + "x-ms-arm-service-request-id": [ + "542e7b13-c753-4d16-a673-141728097659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050256Z:d866abf2-ca45-472e-848f-ad4aee477b27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:56 GMT" + ], + "Content-Length": [ + "1009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"172e6667-a5ce-4669-89cf-3ff809b19256\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aba03424-8185-4a4c-8c7b-09cef7b49b9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e92875b2-31a5-42e8-aa52-63eccb2a1c15" + ], + "x-ms-correlation-request-id": [ + "05bbef72-5845-4a51-99a6-069a4ed3d970" + ], + "x-ms-arm-service-request-id": [ + "20937be2-4e82-43b5-b603-d4a857e9f6c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050257Z:05bbef72-5845-4a51-99a6-069a4ed3d970" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:56 GMT" + ], + "Content-Length": [ + "1009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"172e6667-a5ce-4669-89cf-3ff809b19256\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "102fd325-092d-45ba-9e13-108de66c2ef3" + ], + "x-ms-correlation-request-id": [ + "6e6deed9-2c26-4757-a857-a9aba06b2d79" + ], + "x-ms-arm-service-request-id": [ + "91298f18-8761-4a12-8b51-760de29e5df4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050257Z:6e6deed9-2c26-4757-a857-a9aba06b2d79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:57 GMT" + ], + "Content-Length": [ + "1009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"172e6667-a5ce-4669-89cf-3ff809b19256\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4dece451-471d-41bf-83e6-9ae2ca30febc" + ], + "x-ms-correlation-request-id": [ + "c6ce6868-5b29-4db4-8775-13cdf2db0387" + ], + "x-ms-arm-service-request-id": [ + "a5d13d53-7e15-4a5b-ab9b-b658aa64dfb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:c6ce6868-5b29-4db4-8775-13cdf2db0387" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:04 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"c0b9bcc7-a4d6-4f28-bc85-0e609d893d48\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f6dd9e83-afd2-4e62-8922-15e607e67c22" + ], + "x-ms-correlation-request-id": [ + "18c96304-28c0-44db-bad8-a0ab83a7ff78" + ], + "x-ms-arm-service-request-id": [ + "4e62be39-41c4-4488-bd6b-3c95cbf7c380" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053129Z:18c96304-28c0-44db-bad8-a0ab83a7ff78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:29 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4aab4037-f8c9-459b-9b4d-2ae8ababb589" + ], + "x-ms-correlation-request-id": [ + "3d40b1b1-5e9d-40d0-a4a1-ce74b59e92f9" + ], + "x-ms-arm-service-request-id": [ + "8fa7a71e-0b5b-4ee2-a273-2bb5748cbbc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054333Z:3d40b1b1-5e9d-40d0-a4a1-ce74b59e92f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:33 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"d520b6d0-ae6c-4d72-9034-2fbb948dd710\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3df05fde-c950-4315-a611-e3c6636d2fdd" + ], + "x-ms-correlation-request-id": [ + "dedc3a99-bce2-41ab-823d-fab212fb5379" + ], + "x-ms-arm-service-request-id": [ + "4e360ff3-6c2d-4434-8cb4-c66ff6453e8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055357Z:dedc3a99-bce2-41ab-823d-fab212fb5379" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:56 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"73728e49-385f-4300-9839-ca964be0a0ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5187f2d3-61e7-4083-a59e-6589464c0b69" + ], + "x-ms-correlation-request-id": [ + "1b1d043f-f866-4c0a-a2f4-b30ceac38e43" + ], + "x-ms-arm-service-request-id": [ + "ba1ddb41-a602-4bea-b6a6-0ff3151ff503" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060421Z:1b1d043f-f866-4c0a-a2f4-b30ceac38e43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:20 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"332a4fae-c472-494f-8067-6ba1d6eaa82c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3de8e826-d327-40bb-add4-063422429c5e" + ], + "x-ms-correlation-request-id": [ + "7f443b5d-ff74-4231-a8bf-48ac658204b2" + ], + "x-ms-arm-service-request-id": [ + "6291bdf7-080f-44b1-8f2c-f67f71efc382" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061625Z:7f443b5d-ff74-4231-a8bf-48ac658204b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:24 GMT" + ], + "Content-Length": [ + "1237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"715de446-de94-45b7-a2c2-5b916b9632b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"192.168.1.69\",\r\n \"192.168.1.68\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "510" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "992c0a69-af9f-4adc-b41b-f88ebd307c60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "4a8f310f-85f6-4816-b1ce-f2c42c0b9e49" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e50210a3-3794-46ae-9979-937ff2689efa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045635Z:4a8f310f-85f6-4816-b1ce-f2c42c0b9e49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:35 GMT" + ], + "Content-Length": [ + "1000" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps5072\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\",\r\n \"etag\": \"W/\\\"656c01d7-af47-4667-9bd7-695d28a151fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373\"\r\n },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false,\r\n \"preferredRoutingGateway\": \"ExpressRoute\",\r\n \"hubRoutingPreference\": \"ASPath\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ebc82e61-4ad2-4baa-9168-f46f09d0355d" + ], + "x-ms-correlation-request-id": [ + "2240a83f-90ee-48da-b2c4-a77766490af2" + ], + "x-ms-arm-service-request-id": [ + "41dd94d5-62ab-48f4-8b0f-5fe9dcd493e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045645Z:2240a83f-90ee-48da-b2c4-a77766490af2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "a1801742-2ebb-4f95-9899-b259f46e0380" + ], + "x-ms-correlation-request-id": [ + "2f7df381-9171-42b7-a199-29c2e33900e6" + ], + "x-ms-arm-service-request-id": [ + "a044778d-8377-4c80-ad7d-a3ff24a881bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045655Z:2f7df381-9171-42b7-a199-29c2e33900e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:56:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "6d57745c-96e1-415e-ab69-9e8e74541292" + ], + "x-ms-correlation-request-id": [ + "c887bb74-5824-48bb-a31b-690cbb7f878f" + ], + "x-ms-arm-service-request-id": [ + "e59977c3-aa2b-4c5d-8c1b-e862b6caff12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045715Z:c887bb74-5824-48bb-a31b-690cbb7f878f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:57:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "dd9ab001-51de-4ca0-b1b5-bc5b625206e9" + ], + "x-ms-correlation-request-id": [ + "387af6ce-7cfd-44fb-b4ab-db3e9ec7a2fe" + ], + "x-ms-arm-service-request-id": [ + "9971dddf-28c8-45b4-af84-0b39d6f01434" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045735Z:387af6ce-7cfd-44fb-b4ab-db3e9ec7a2fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:57:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "717818b5-0997-452b-93df-bdf4c946c20d" + ], + "x-ms-correlation-request-id": [ + "04437148-3c45-4e90-af2f-827a483f6eac" + ], + "x-ms-arm-service-request-id": [ + "62299458-59c8-43be-af76-058afce934fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045815Z:04437148-3c45-4e90-af2f-827a483f6eac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:58:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "e75a0728-5cfa-43a3-af32-0f39bcb8c910" + ], + "x-ms-correlation-request-id": [ + "c98378b6-4e11-49e6-a2a3-8593b8e87fb6" + ], + "x-ms-arm-service-request-id": [ + "3cfcb54e-a036-4695-822a-27136246960e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T045855Z:c98378b6-4e11-49e6-a2a3-8593b8e87fb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 04:58:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "8a097a2e-670a-4240-ae24-1b7d2a3b9e9d" + ], + "x-ms-correlation-request-id": [ + "3e7514f8-142a-41e0-b986-aba02dd57c5a" + ], + "x-ms-arm-service-request-id": [ + "b52d02bf-ee46-49e7-8bac-bc6040bffe0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050016Z:3e7514f8-142a-41e0-b986-aba02dd57c5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:00:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/992c0a69-af9f-4adc-b41b-f88ebd307c60?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk5MmMwYTY5LWFmOWYtNGFkYy1iNDFiLWY4OGViZDMwN2M2MD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308c7fbc-6c81-42ed-b10b-e15a30483a2c" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8776ffae-7bcc-42be-a668-16bf938206b1" + ], + "x-ms-correlation-request-id": [ + "9b5734d5-a39e-4938-963b-94de876e189e" + ], + "x-ms-arm-service-request-id": [ + "b23f65ab-3130-4c78-8c3b-bfbdfb432bcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050256Z:9b5734d5-a39e-4938-963b-94de876e189e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:56 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aba03424-8185-4a4c-8c7b-09cef7b49b9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b79ed2f1-a832-4ab5-bec7-448ff43779b7" + ], + "x-ms-correlation-request-id": [ + "c5ce8ba9-2e5b-4b22-ac0c-77c9038e5db9" + ], + "x-ms-arm-service-request-id": [ + "de141443-1b7d-4813-a27a-65a4b46e8fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050257Z:c5ce8ba9-2e5b-4b22-ac0c-77c9038e5db9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:56 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0259d2fa-eb46-45d2-a5f1-d602764cc55f" + ], + "x-ms-correlation-request-id": [ + "5551f3ad-a740-4c1c-beef-7e18a639605a" + ], + "x-ms-arm-service-request-id": [ + "e738f0bd-88c4-45f9-a6b4-25aab1d5ce29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:5551f3ad-a740-4c1c-beef-7e18a639605a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:04 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a1e3bb60-2841-4f47-b186-1c5f2edc926e" + ], + "x-ms-correlation-request-id": [ + "14e166f6-0cc4-477a-9e0e-1033d715ee7a" + ], + "x-ms-arm-service-request-id": [ + "19e6a6e0-8716-49ef-bf03-f599c2d3453c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053129Z:14e166f6-0cc4-477a-9e0e-1033d715ee7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:29 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da0a9b48-ebeb-4a24-acfc-d6f6abd993a2" + ], + "x-ms-correlation-request-id": [ + "26e3fb4a-c6d2-480a-8879-30a8659fd812" + ], + "x-ms-arm-service-request-id": [ + "15d184b2-88fc-4329-826f-5307020dc1e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054333Z:26e3fb4a-c6d2-480a-8879-30a8659fd812" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:33 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c89b8f95-c1f3-4bac-b9f0-c6857dc31ee1" + ], + "x-ms-correlation-request-id": [ + "5ac59905-02d9-4435-9a41-e037833e8d9d" + ], + "x-ms-arm-service-request-id": [ + "35dff35e-594e-449d-8f5c-dea16fd40b7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055357Z:5ac59905-02d9-4435-9a41-e037833e8d9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:56 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97484291-89c2-4bf8-815d-1a0c79484398" + ], + "x-ms-correlation-request-id": [ + "38232d38-c4e9-4904-87b7-8d549e63d254" + ], + "x-ms-arm-service-request-id": [ + "8c197ec1-732d-4074-807b-f32b2e2c1704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060421Z:38232d38-c4e9-4904-87b7-8d549e63d254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:21 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/hubVirtualNetworkConnections?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL2h1YlZpcnR1YWxOZXR3b3JrQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52643bcc-7fd6-44e5-a763-ce4425b97097" + ], + "x-ms-correlation-request-id": [ + "4ee97f68-aff4-4b75-a3a2-981e11d68d98" + ], + "x-ms-arm-service-request-id": [ + "b54c33e3-d7aa-4cbc-b1e5-9583a610c94f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061625Z:4ee97f68-aff4-4b75-a3a2-981e11d68d98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:25 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "78704699-7e0c-4a75-8c11-423a7a1c1a94" + ], + "x-ms-correlation-request-id": [ + "78704699-7e0c-4a75-8c11-423a7a1c1a94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050257Z:78704699-7e0c-4a75-8c11-423a7a1c1a94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:02:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "224" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/testFirewall1' under resource group 'ps7209' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67bb76fc-82e6-479b-a293-35a468195e98\"" + ], + "x-ms-request-id": [ + "73ab6542-6053-4751-ae5a-de392f48335f" + ], + "x-ms-correlation-request-id": [ + "c724a745-aa5f-45c3-9fe9-ca1855103f32" + ], + "x-ms-arm-service-request-id": [ + "5570f929-531b-4189-b16c-d6aaef581f8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:c724a745-aa5f-45c3-9fe9-ca1855103f32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:03 GMT" + ], + "Content-Length": [ + "877" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testFirewall1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\",\r\n \"etag\": \"W/\\\"67bb76fc-82e6-479b-a293-35a468195e98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"192.168.1.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"20.112.135.153\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67bb76fc-82e6-479b-a293-35a468195e98\"" + ], + "x-ms-request-id": [ + "bae2be34-1fe3-4018-8100-b2123b8589ad" + ], + "x-ms-correlation-request-id": [ + "4ee6cad5-4953-49fe-afe8-ea9915d18975" + ], + "x-ms-arm-service-request-id": [ + "bd2d0be6-cbef-4e8b-8364-83e6eaa40d7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:4ee6cad5-4953-49fe-afe8-ea9915d18975" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:03 GMT" + ], + "Content-Length": [ + "877" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testFirewall1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\",\r\n \"etag\": \"W/\\\"67bb76fc-82e6-479b-a293-35a468195e98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"192.168.1.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"20.112.135.153\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1806851-d651-4c4c-881c-6ac46f088123" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"67bb76fc-82e6-479b-a293-35a468195e98\"" + ], + "x-ms-request-id": [ + "604d4ec2-f690-453b-820b-d8626796e8e1" + ], + "x-ms-correlation-request-id": [ + "e8e87143-66c4-44ee-9c5b-64a2bccf1568" + ], + "x-ms-arm-service-request-id": [ + "1df574f3-316d-473d-b0b5-7606ca4da0ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:e8e87143-66c4-44ee-9c5b-64a2bccf1568" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:04 GMT" + ], + "Content-Length": [ + "877" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testFirewall1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\",\r\n \"etag\": \"W/\\\"67bb76fc-82e6-479b-a293-35a468195e98\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"192.168.1.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"20.112.135.153\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "592" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "145ace31-bd22-41df-b9a4-905dd3d662b9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "213eb9a2-f1cb-42ac-9ce4-d8e68686a69e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3bf13f85-c850-4ad6-8c08-c7baf763e7b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050301Z:213eb9a2-f1cb-42ac-9ce4-d8e68686a69e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:03:00 GMT" + ], + "Content-Length": [ + "755" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testFirewall1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\",\r\n \"etag\": \"W/\\\"533ad736-5972-4a17-8aa0-c66c703684a0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f31beae-a0dd-471e-8d57-cf177e346b95" + ], + "x-ms-correlation-request-id": [ + "9eaeba93-2362-4250-acb5-d1581bdd49d1" + ], + "x-ms-arm-service-request-id": [ + "a053eaa6-5a39-4263-9b64-5fbcdc843623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050311Z:9eaeba93-2362-4250-acb5-d1581bdd49d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:03:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "5f1172f3-8ebd-4545-a22c-6e48e799e26e" + ], + "x-ms-correlation-request-id": [ + "56a63d9a-39f6-4b8c-bada-938159e17cd5" + ], + "x-ms-arm-service-request-id": [ + "0cf2db13-743a-4e8c-8ed0-45cdc42697a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050321Z:56a63d9a-39f6-4b8c-bada-938159e17cd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:03:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "083a6cc4-26d9-4f1c-a6c3-a19efcec240c" + ], + "x-ms-correlation-request-id": [ + "ce3fc39a-d775-4c8c-b241-3a2d067fb487" + ], + "x-ms-arm-service-request-id": [ + "b1f8d035-c80f-4160-98b1-21a6b01d933f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050341Z:ce3fc39a-d775-4c8c-b241-3a2d067fb487" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:03:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "a0d3160e-92b2-4bee-9b0c-4dba4a3fc3d3" + ], + "x-ms-correlation-request-id": [ + "af12c118-f1ab-4984-9f5f-2deabe66c433" + ], + "x-ms-arm-service-request-id": [ + "b143791e-5091-4e05-9849-e005cc57ece2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050401Z:af12c118-f1ab-4984-9f5f-2deabe66c433" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:04:01 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "b934de18-41a0-49a8-b376-22ec678c8d67" + ], + "x-ms-correlation-request-id": [ + "bd9fe3a8-93bd-4b54-8ae0-5028d791e907" + ], + "x-ms-arm-service-request-id": [ + "d20add94-f3d9-4fc3-8819-78b034b5e9ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050441Z:bd9fe3a8-93bd-4b54-8ae0-5028d791e907" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:04:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "721f84c2-84e2-4e02-8675-13ce08746b5c" + ], + "x-ms-correlation-request-id": [ + "517cbc4d-83f1-4efb-98bd-328cf7eba406" + ], + "x-ms-arm-service-request-id": [ + "1bc0f638-8244-4125-9c5f-32f40f00c2bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050521Z:517cbc4d-83f1-4efb-98bd-328cf7eba406" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:05:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "9b9a8b69-9588-45a9-94d7-06c3134d7b33" + ], + "x-ms-correlation-request-id": [ + "5a040fc2-966a-4635-90cd-bf2cb57167f9" + ], + "x-ms-arm-service-request-id": [ + "acc3e355-2fb9-4789-87eb-e5d9902ef0d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050641Z:5a040fc2-966a-4635-90cd-bf2cb57167f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:06:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "934fbc94-b5f2-4c48-9227-243f30987b2e" + ], + "x-ms-correlation-request-id": [ + "cab90cc1-6bbf-411b-a7f5-a8c61fab5c3d" + ], + "x-ms-arm-service-request-id": [ + "02ee6bbe-2151-4766-921e-2d738d876d4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T050922Z:cab90cc1-6bbf-411b-a7f5-a8c61fab5c3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:09:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "13a1642d-6f78-4f23-a768-59386af259cf" + ], + "x-ms-correlation-request-id": [ + "7340babd-f110-4822-addc-882b531981a0" + ], + "x-ms-arm-service-request-id": [ + "aaf6f503-d4ad-4763-bf97-ff16763d4982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051102Z:7340babd-f110-4822-addc-882b531981a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:11:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "cf8c9af6-508c-4f17-9555-876dff67374c" + ], + "x-ms-correlation-request-id": [ + "15d65d82-deaa-4e48-9130-0b19d49a708c" + ], + "x-ms-arm-service-request-id": [ + "bef75ac2-0de9-4a62-ab04-3d4933f92b2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051242Z:15d65d82-deaa-4e48-9130-0b19d49a708c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:12:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "9fb8b3e2-ebca-454a-81a1-5e58b57f9381" + ], + "x-ms-correlation-request-id": [ + "2ba1a528-ed36-4504-96e5-ebaa1e31f634" + ], + "x-ms-arm-service-request-id": [ + "a4a97a49-ea45-4fd5-a2bc-f092d36c54c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051422Z:2ba1a528-ed36-4504-96e5-ebaa1e31f634" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:14:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "47d5e9e5-585c-4342-9010-8a49e32c7e02" + ], + "x-ms-correlation-request-id": [ + "8f65706c-fd80-46cd-87ad-971f15f3103e" + ], + "x-ms-arm-service-request-id": [ + "055a22b2-cbd4-4a78-995c-b6cee7298619" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051603Z:8f65706c-fd80-46cd-87ad-971f15f3103e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:16:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "0fbcf278-df06-4093-bc0c-0979841972aa" + ], + "x-ms-correlation-request-id": [ + "c70c9e7f-468b-4d2c-a064-0d93b1e08cca" + ], + "x-ms-arm-service-request-id": [ + "7e9c4078-4a70-4cbb-a4f6-33372df8ed99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051743Z:c70c9e7f-468b-4d2c-a064-0d93b1e08cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:17:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "35325c95-2845-4f12-abce-c5e9168584db" + ], + "x-ms-correlation-request-id": [ + "35933b69-1549-47cc-ac1b-9ce1fab42472" + ], + "x-ms-arm-service-request-id": [ + "1aecef3b-9173-40f5-9fcd-6282434b2ba7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T051923Z:35933b69-1549-47cc-ac1b-9ce1fab42472" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:19:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/145ace31-bd22-41df-b9a4-905dd3d662b9?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE0NWFjZTMxLWJkMjItNDFkZi1iOWE0LTkwNWRkM2Q2NjJiOT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d2a78b7-e3e9-40dd-abcf-d8ff32757c53" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d9d3fd61-b10b-4d96-aa55-b656002e2c62" + ], + "x-ms-correlation-request-id": [ + "5bbc1b56-f333-436f-945b-dbf3d4b359b9" + ], + "x-ms-arm-service-request-id": [ + "b65336ea-8051-46f1-ba1f-7eb51f90045f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052103Z:5bbc1b56-f333-436f-945b-dbf3d4b359b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:03 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQ/YXBpLXZlcnNpb249MjAyMS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d792c1f-36db-4215-970f-99c78429e46b" + ], + "x-ms-correlation-request-id": [ + "6b0b40fd-4ba2-4b73-9661-517556178919" + ], + "x-ms-arm-service-request-id": [ + "08ee23e1-319c-4399-982e-343fe27522eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052104Z:6b0b40fd-4ba2-4b73-9661-517556178919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:04 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"testRoutingIntent1\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "634" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4ed5dac4-1341-42d7-b2ec-c62a4acdcc67" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "84d66be3-567e-4c1d-b746-681adeae876a" + ], + "x-ms-arm-service-request-id": [ + "92d37667-6b2d-4aa3-bf60-37a5a7177dc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052105Z:84d66be3-567e-4c1d-b746-681adeae876a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:05 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"042759ff-a4a9-48bf-a136-86e0ff275c95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "533" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2c0fe3a-a440-4458-a6e4-3638694938e2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "992e7f37-b46d-421a-9596-b6674c555ea3" + ], + "x-ms-arm-service-request-id": [ + "adcd915d-f1b1-4199-a8b1-422f5fef66ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053130Z:992e7f37-b46d-421a-9596-b6674c555ea3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:30 GMT" + ], + "Content-Length": [ + "686" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"64e285d9-dbac-45a4-8ead-5ac636be88cb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "800" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dff5675a-69d2-48a3-b5d5-17920805e756" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "947bf1a9-cdbe-4115-a8d2-5e9b62158df7" + ], + "x-ms-arm-service-request-id": [ + "4709bf62-82c4-43af-b1f9-c6081dc9d84b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054334Z:947bf1a9-cdbe-4115-a8d2-5e9b62158df7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:34 GMT" + ], + "Content-Length": [ + "953" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"247937df-e6bd-481d-aaf5-0cb4476f69fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "533" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c6c04a2a-d2d1-490e-988b-a81fdc63c575" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "ba0a4b98-3857-495f-83c5-9af9a1436561" + ], + "x-ms-arm-service-request-id": [ + "688d5c9e-6f37-4f0b-99b5-d8b76188537c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055358Z:ba0a4b98-3857-495f-83c5-9af9a1436561" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:57 GMT" + ], + "Content-Length": [ + "686" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"df8c2ab5-2b2c-47f6-9910-be5c2a3dea8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"Internet\",\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "556" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "fdd631e9-0f8b-415f-bbf5-33cd2bd23da3" + ], + "x-ms-arm-service-request-id": [ + "1d16adc6-4533-412f-990d-37bdcac1d25e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060422Z:fdd631e9-0f8b-415f-bbf5-33cd2bd23da3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:22 GMT" + ], + "Content-Length": [ + "709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"610817ab-b9a3-4407-9106-9751ca6cb158\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"Internet\",\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ee687597-24e3-4dcd-97e6-0c41b51cddf2" + ], + "x-ms-correlation-request-id": [ + "a8eefc83-0264-4b7f-80e5-cc2225b77981" + ], + "x-ms-arm-service-request-id": [ + "82905c80-1d41-4910-b210-e89f1d3c4d09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052116Z:a8eefc83-0264-4b7f-80e5-cc2225b77981" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "74d687f6-e9cc-4927-b1ff-3548f3d84a09" + ], + "x-ms-correlation-request-id": [ + "a672c9fa-d1f7-42bf-8c45-b4cefc5bbe75" + ], + "x-ms-arm-service-request-id": [ + "f0b033c8-870b-4333-aac2-ae5df1f16f8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052126Z:a672c9fa-d1f7-42bf-8c45-b4cefc5bbe75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "168600c6-9502-4aee-a464-1916b2fb5c77" + ], + "x-ms-correlation-request-id": [ + "0d6f6036-0d06-4bf6-ae94-c1b86703133a" + ], + "x-ms-arm-service-request-id": [ + "a818c3fc-ea44-4429-9795-299fd18e53da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052146Z:0d6f6036-0d06-4bf6-ae94-c1b86703133a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:21:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "a1e8959d-a917-4d31-b1f7-0c6e806992a9" + ], + "x-ms-correlation-request-id": [ + "f0948d66-251d-446c-8aea-ca172cca2a8d" + ], + "x-ms-arm-service-request-id": [ + "dc4b1e3e-b174-408f-b7aa-3c9526813bb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052226Z:f0948d66-251d-446c-8aea-ca172cca2a8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:22:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "d3f6aed2-f6d3-42ad-bae7-336333838af7" + ], + "x-ms-correlation-request-id": [ + "fcf256a5-443c-4245-8796-abaa0d71ecc1" + ], + "x-ms-arm-service-request-id": [ + "5abca05d-4cfe-4cea-b521-a705fdd35571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052346Z:fcf256a5-443c-4245-8796-abaa0d71ecc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:23:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "7058c126-1066-40ab-a50a-5e64f8b0d359" + ], + "x-ms-correlation-request-id": [ + "46d94104-cd55-49c4-a731-1e98228b8f09" + ], + "x-ms-arm-service-request-id": [ + "cae987ae-8f15-45d2-aeec-12d1d3fc43cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052627Z:46d94104-cd55-49c4-a731-1e98228b8f09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:26:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "000aac3f-f7ad-46dd-ac43-7ac41c5955ba" + ], + "x-ms-correlation-request-id": [ + "f95da15a-a343-443a-ab86-d1888f3e78d2" + ], + "x-ms-arm-service-request-id": [ + "e47d8cf5-5d55-4cc6-a14a-9700aaee5427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052807Z:f95da15a-a343-443a-ab86-d1888f3e78d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:28:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "09884c4b-b7a1-42c8-84a3-8848a2fe7f18" + ], + "x-ms-correlation-request-id": [ + "1d39218b-5131-48c5-adac-3b4ba960ab5d" + ], + "x-ms-arm-service-request-id": [ + "4e835e50-39c0-46e2-89bb-7c35fd6a9a04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T052947Z:1d39218b-5131-48c5-adac-3b4ba960ab5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:29:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/4ed5dac4-1341-42d7-b2ec-c62a4acdcc67?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRlZDVkYWM0LTEzNDEtNDJkNy1iMmVjLWM2MmE0YWNkY2M2Nz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "54b12ae3-0e96-435b-a4d4-c204bc511525" + ], + "x-ms-correlation-request-id": [ + "d182ad92-aec8-41f2-b9bf-8ac1771bc123" + ], + "x-ms-arm-service-request-id": [ + "6d5c6112-8d51-42af-9066-ddbc78e40b39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053128Z:d182ad92-aec8-41f2-b9bf-8ac1771bc123" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:27 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45c884ef-70b6-4505-904e-3c4f71546cb3" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\"" + ], + "x-ms-request-id": [ + "732dd6fc-5921-4f57-9877-de96da022a2b" + ], + "x-ms-correlation-request-id": [ + "66828bee-0e65-45af-9585-27f03432aec6" + ], + "x-ms-arm-service-request-id": [ + "99170c62-9a42-4dcb-83bf-e83b6169a50a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053128Z:66828bee-0e65-45af-9585-27f03432aec6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:28 GMT" + ], + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ae7917f-dc26-40d5-9b34-7a7cc382adad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\"" + ], + "x-ms-request-id": [ + "bfd77a4f-8c03-47dc-9e20-6602b1883674" + ], + "x-ms-correlation-request-id": [ + "31811f30-563a-4bf9-9ed4-52d218f6547a" + ], + "x-ms-arm-service-request-id": [ + "5eccb843-b4be-41e8-950a-d27f64e8adc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053128Z:31811f30-563a-4bf9-9ed4-52d218f6547a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:28 GMT" + ], + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\"" + ], + "x-ms-request-id": [ + "bb8a25a6-9528-4075-a6bc-0c2d7c9dd06c" + ], + "x-ms-correlation-request-id": [ + "7208eeb3-c77b-4aa1-bdf5-81f43b01bf27" + ], + "x-ms-arm-service-request-id": [ + "6304cb61-c51e-4445-babb-356e3367526b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053129Z:7208eeb3-c77b-4aa1-bdf5-81f43b01bf27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:28 GMT" + ], + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"6da0a20d-b4f0-4b58-b0b8-d2c0e1e0b29f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d520b6d0-ae6c-4d72-9034-2fbb948dd710\"" + ], + "x-ms-request-id": [ + "ae400d47-07e9-461d-beed-1d76558ef2ed" + ], + "x-ms-correlation-request-id": [ + "f15186e1-ffff-4b55-bd03-e8728305f8ea" + ], + "x-ms-arm-service-request-id": [ + "7ca0847a-e88c-4644-98e2-8bc61b0b0a69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054333Z:f15186e1-ffff-4b55-bd03-e8728305f8ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:32 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"d520b6d0-ae6c-4d72-9034-2fbb948dd710\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c821d1dc-03a1-47b8-8ac5-54f2829dab6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d520b6d0-ae6c-4d72-9034-2fbb948dd710\"" + ], + "x-ms-request-id": [ + "f7a05179-81dd-4b8c-985b-23e879578154" + ], + "x-ms-correlation-request-id": [ + "ab909f45-9181-4e71-b1cb-129275ea44c7" + ], + "x-ms-arm-service-request-id": [ + "ce5cc4a5-5916-4ee3-9640-ff8b759a0153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054333Z:ab909f45-9181-4e71-b1cb-129275ea44c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:32 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"d520b6d0-ae6c-4d72-9034-2fbb948dd710\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"73728e49-385f-4300-9839-ca964be0a0ec\"" + ], + "x-ms-request-id": [ + "2f3eb79b-1520-4509-a4be-a923ca31bb59" + ], + "x-ms-correlation-request-id": [ + "94d3a9d7-f3f7-43e6-9e6c-96e6d497ccda" + ], + "x-ms-arm-service-request-id": [ + "953c729d-53a9-4c5d-b000-59e59f9ef76d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055357Z:94d3a9d7-f3f7-43e6-9e6c-96e6d497ccda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:56 GMT" + ], + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"73728e49-385f-4300-9839-ca964be0a0ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89ac21f1-598e-45e8-a3ce-80667b31a905" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"73728e49-385f-4300-9839-ca964be0a0ec\"" + ], + "x-ms-request-id": [ + "3f46f25f-bad5-4385-acdf-c7554051e7e1" + ], + "x-ms-correlation-request-id": [ + "4b77e2c5-1d55-4f32-a837-e0c154bcdd3f" + ], + "x-ms-arm-service-request-id": [ + "095a0536-5153-4983-ace9-aea1badb52bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055357Z:4b77e2c5-1d55-4f32-a837-e0c154bcdd3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:56 GMT" + ], + "Content-Length": [ + "954" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"73728e49-385f-4300-9839-ca964be0a0ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n },\r\n {\r\n \"name\": \"PublicTraffic\",\r\n \"destinations\": [\r\n \"Internet\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"332a4fae-c472-494f-8067-6ba1d6eaa82c\"" + ], + "x-ms-request-id": [ + "b544a1d0-3694-4332-bff1-19b158cc3359" + ], + "x-ms-correlation-request-id": [ + "23460aa2-18d3-491a-bed9-9a14ad1ca921" + ], + "x-ms-arm-service-request-id": [ + "fa357cb5-511d-4fba-9797-ac3027cea959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060420Z:23460aa2-18d3-491a-bed9-9a14ad1ca921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:20 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"332a4fae-c472-494f-8067-6ba1d6eaa82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e37c7c4-7b93-4ead-894a-b7e3b6bd9a45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"332a4fae-c472-494f-8067-6ba1d6eaa82c\"" + ], + "x-ms-request-id": [ + "175c2705-c624-49ed-99a8-59561a35d2be" + ], + "x-ms-correlation-request-id": [ + "0c7b726a-f67c-4368-bd7c-72cda1cc9aec" + ], + "x-ms-arm-service-request-id": [ + "70ec6cb6-b1fc-43d3-afee-715241584f72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060420Z:0c7b726a-f67c-4368-bd7c-72cda1cc9aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:20 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"332a4fae-c472-494f-8067-6ba1d6eaa82c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"715de446-de94-45b7-a2c2-5b916b9632b7\"" + ], + "x-ms-request-id": [ + "a0731063-da07-432e-8439-f70070597c57" + ], + "x-ms-correlation-request-id": [ + "c98fec58-8c23-4900-91a3-3f0f5214902b" + ], + "x-ms-arm-service-request-id": [ + "f87c6556-bf5d-4d39-a318-256059299028" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061625Z:c98fec58-8c23-4900-91a3-3f0f5214902b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:24 GMT" + ], + "Content-Length": [ + "710" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"715de446-de94-45b7-a2c2-5b916b9632b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"Internet\",\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69e9a4c7-9c08-43dd-8497-a8bfcc6430ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"715de446-de94-45b7-a2c2-5b916b9632b7\"" + ], + "x-ms-request-id": [ + "a976274b-caa3-4e9e-ba9c-a6846f70ea1c" + ], + "x-ms-correlation-request-id": [ + "5ee28189-59c9-4a3f-addc-99a8795c8b90" + ], + "x-ms-arm-service-request-id": [ + "49710d0b-db7f-4774-ac06-2e4ca231bd89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061625Z:5ee28189-59c9-4a3f-addc-99a8795c8b90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:24 GMT" + ], + "Content-Length": [ + "710" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"testRoutingIntent1\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1\",\r\n \"etag\": \"W/\\\"715de446-de94-45b7-a2c2-5b916b9632b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingPolicies\": [\r\n {\r\n \"name\": \"PrivateTraffic\",\r\n \"destinations\": [\r\n \"Internet\",\r\n \"PrivateTraffic\"\r\n ],\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/routingIntent\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29ad38f5-634e-40ac-855d-5f67c5f2dd04" + ], + "x-ms-correlation-request-id": [ + "9e67a404-60d0-42fc-9409-bcdcd0c643ec" + ], + "x-ms-arm-service-request-id": [ + "0592a671-c082-4649-9dfe-22c72cd0bcec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053140Z:9e67a404-60d0-42fc-9409-bcdcd0c643ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "9c2af235-85c5-4291-b7ad-4b8ae941414f" + ], + "x-ms-correlation-request-id": [ + "1aea95ed-5cc8-461e-82ad-1b05e32ac513" + ], + "x-ms-arm-service-request-id": [ + "eb68c4b2-5c11-4888-ac4d-019f7cef4044" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053150Z:1aea95ed-5cc8-461e-82ad-1b05e32ac513" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:31:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "8bb6ce9e-2e6c-46b1-8413-3e2e42c0d341" + ], + "x-ms-correlation-request-id": [ + "87fb4543-7807-4b6b-b261-4cea99e9bd96" + ], + "x-ms-arm-service-request-id": [ + "9c47b222-0f8b-4f30-bab3-a4636a4b42b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053210Z:87fb4543-7807-4b6b-b261-4cea99e9bd96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:32:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "7d8cbbc5-3da8-420a-8d15-6f4d3ffb7ca9" + ], + "x-ms-correlation-request-id": [ + "938e9e16-34e0-44b0-8040-89ab56364536" + ], + "x-ms-arm-service-request-id": [ + "9cb869c7-82ba-4bb3-8ae2-297a2a87d477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053250Z:938e9e16-34e0-44b0-8040-89ab56364536" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:32:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "4cae079a-4d41-427f-9550-fbe44aa21956" + ], + "x-ms-correlation-request-id": [ + "f34d4641-88aa-4f4c-a334-f3333787eb33" + ], + "x-ms-arm-service-request-id": [ + "0f2c4177-62a2-4f83-99da-89a8c527b87d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053411Z:f34d4641-88aa-4f4c-a334-f3333787eb33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:34:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "c16d8198-01b4-43f0-b633-7364907a5e46" + ], + "x-ms-correlation-request-id": [ + "b926f597-8c31-4ed3-9b1a-d1cf50de8e6a" + ], + "x-ms-arm-service-request-id": [ + "a8fa0f34-823e-43af-bc9f-31995a2649e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053652Z:b926f597-8c31-4ed3-9b1a-d1cf50de8e6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:36:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "23dbc25d-a025-4a9e-90d0-d5cfa6aa2d65" + ], + "x-ms-correlation-request-id": [ + "11333172-739f-46ac-869d-725f6d57d873" + ], + "x-ms-arm-service-request-id": [ + "4670784a-50f0-48d8-9191-d7e0ab662c72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T053832Z:11333172-739f-46ac-869d-725f6d57d873" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:38:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "46e18ce9-90de-493a-8d76-fa357fee751a" + ], + "x-ms-correlation-request-id": [ + "dc097795-5254-417a-98e4-b48d2c24438e" + ], + "x-ms-arm-service-request-id": [ + "00a00847-6b33-4580-9db0-f1cc20f5c3fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054012Z:dc097795-5254-417a-98e4-b48d2c24438e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:40:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "60f42271-96e6-4e60-8feb-341df4986dd8" + ], + "x-ms-correlation-request-id": [ + "253f6263-3fc7-4df9-8197-1a0ff91e658f" + ], + "x-ms-arm-service-request-id": [ + "969019a5-06ca-4580-9420-7d73a672855b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054152Z:253f6263-3fc7-4df9-8197-1a0ff91e658f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:41:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/d2c0fe3a-a440-4458-a6e4-3638694938e2?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2QyYzBmZTNhLWE0NDAtNDQ1OC1hNmU0LTM2Mzg2OTQ5MzhlMj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18c46825-313c-4af3-9c1e-3da4084b413e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb87eda2-b0e8-46c7-8f80-fc88d8f4cb5d" + ], + "x-ms-correlation-request-id": [ + "6fc5ce8d-3436-43fc-b82f-72ea243aceaf" + ], + "x-ms-arm-service-request-id": [ + "7b126255-b33d-49bc-ba4d-1ad372ae0fad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054333Z:6fc5ce8d-3436-43fc-b82f-72ea243aceaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:32 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "79c469e0-19b7-4f70-b3a2-05c21a665752" + ], + "x-ms-correlation-request-id": [ + "304f8856-893a-41f7-80c6-ef0f9d611443" + ], + "x-ms-arm-service-request-id": [ + "46fcbe8d-55b2-4643-9cdc-298124141ad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054344Z:304f8856-893a-41f7-80c6-ef0f9d611443" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "543d644e-83dc-4416-a9f7-a2ada1a1b2ad" + ], + "x-ms-correlation-request-id": [ + "fd25e363-ebbf-4a17-81ad-370f67e7ffbf" + ], + "x-ms-arm-service-request-id": [ + "414334ac-c82a-48bb-aa3f-558384042b2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054354Z:fd25e363-ebbf-4a17-81ad-370f67e7ffbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:43:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "eb954502-bc4b-4a1b-94d6-8adb1607b62b" + ], + "x-ms-correlation-request-id": [ + "315da8cd-b6b8-47df-a4c8-9f285081875d" + ], + "x-ms-arm-service-request-id": [ + "4c05aecc-3ce1-4fd5-88f3-56b7f41a3e0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054414Z:315da8cd-b6b8-47df-a4c8-9f285081875d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:44:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "1f3ac8ff-b449-49b6-a709-b37b27b96b89" + ], + "x-ms-correlation-request-id": [ + "c1e7ef0b-a27e-44c4-931f-ea20a83a8f73" + ], + "x-ms-arm-service-request-id": [ + "7b37ac7f-a01c-45a4-b09c-666b25f55d19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054455Z:c1e7ef0b-a27e-44c4-931f-ea20a83a8f73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:44:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "3cf36193-5f66-45a1-971c-ed42db05d4aa" + ], + "x-ms-correlation-request-id": [ + "013a0495-1553-4513-9213-78184e36bd3f" + ], + "x-ms-arm-service-request-id": [ + "19791e62-5a2f-4588-81c7-7af708cac840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054615Z:013a0495-1553-4513-9213-78184e36bd3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:46:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "07bec9f5-a5dc-429f-9279-5e10b420241c" + ], + "x-ms-correlation-request-id": [ + "df39c02e-3c4c-471d-965f-359137fd3134" + ], + "x-ms-arm-service-request-id": [ + "7fc9af83-d90f-43f7-9a69-a952137fcb87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T054855Z:df39c02e-3c4c-471d-965f-359137fd3134" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:48:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "d0c4ec33-da7d-4446-9c6c-1136dce7fb88" + ], + "x-ms-correlation-request-id": [ + "5997ab75-e2ae-45b2-97af-2022f32bca93" + ], + "x-ms-arm-service-request-id": [ + "36ba22da-4b81-426d-8a7d-cd26f7f552fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055036Z:5997ab75-e2ae-45b2-97af-2022f32bca93" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:50:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "37433b99-9753-48dc-9558-a6d96b0cfe58" + ], + "x-ms-correlation-request-id": [ + "4e5de18f-307f-441d-9d55-12a56cdcf1fb" + ], + "x-ms-arm-service-request-id": [ + "854574cb-737d-4ac8-a61f-e77d1f66ffd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055216Z:4e5de18f-307f-441d-9d55-12a56cdcf1fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:52:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/dff5675a-69d2-48a3-b5d5-17920805e756?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2RmZjU2NzVhLTY5ZDItNDhhMy1iNWQ1LTE3OTIwODA1ZTc1Nj9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21a9deb-3098-4fef-b5ce-d19c4e24396b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "18bcf3e9-5525-4040-ad4e-d882d02e6b2f" + ], + "x-ms-correlation-request-id": [ + "10bb3eaa-d50a-4bda-bf92-bb405940b582" + ], + "x-ms-arm-service-request-id": [ + "d4b04819-1bca-4980-8e84-ab2ceafc417b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055356Z:10bb3eaa-d50a-4bda-bf92-bb405940b582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:53:55 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "661f3178-64c3-4d0e-905f-679297c538b2" + ], + "x-ms-correlation-request-id": [ + "c4c683cb-5777-4fc1-8a13-981eae5715b2" + ], + "x-ms-arm-service-request-id": [ + "0443254e-81d6-45ac-bcce-eeef9286af81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055408Z:c4c683cb-5777-4fc1-8a13-981eae5715b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:54:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "30a726e0-6a5b-45bf-ad6b-b1c5af88e4eb" + ], + "x-ms-correlation-request-id": [ + "56a81d71-ffe5-4eb0-8d85-86fccbda60d9" + ], + "x-ms-arm-service-request-id": [ + "f84dda7e-6ba0-41f5-a694-da79867093b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055418Z:56a81d71-ffe5-4eb0-8d85-86fccbda60d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:54:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "173bebb0-966f-45d6-a04a-ffbaf18bd970" + ], + "x-ms-correlation-request-id": [ + "70b89480-d4fc-44c8-b58b-80bde13844d2" + ], + "x-ms-arm-service-request-id": [ + "5675e8b5-7cdb-4721-8d21-e3b89e975dee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055438Z:70b89480-d4fc-44c8-b58b-80bde13844d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:54:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "52b764ca-b39d-462e-b082-24a88b80fbd7" + ], + "x-ms-correlation-request-id": [ + "b8849d3c-bd7e-4fdf-ba11-abc257fac994" + ], + "x-ms-arm-service-request-id": [ + "c1c6e045-c051-45ab-ad3b-9ed0f987cc70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055519Z:b8849d3c-bd7e-4fdf-ba11-abc257fac994" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:55:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "6178972f-9a77-4fef-99c3-1708bf66c592" + ], + "x-ms-correlation-request-id": [ + "2d898e5e-051d-4e10-8c58-e32c474efc16" + ], + "x-ms-arm-service-request-id": [ + "4acbc39d-a08f-4a19-9c71-df67f3fe5a4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055639Z:2d898e5e-051d-4e10-8c58-e32c474efc16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:56:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "e28cb8f6-b16e-4fcb-9946-bbb4fa3ab4fd" + ], + "x-ms-correlation-request-id": [ + "642a6108-8fb1-4ac4-9c3e-09662ceaebc9" + ], + "x-ms-arm-service-request-id": [ + "6279552a-1afa-45d3-a234-8bc7c948bda5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T055919Z:642a6108-8fb1-4ac4-9c3e-09662ceaebc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 05:59:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "ed222578-2cd9-4dad-9e6c-d5c2e8f03f18" + ], + "x-ms-correlation-request-id": [ + "7aa8f8f3-7802-429d-a581-cf506e3b49cb" + ], + "x-ms-arm-service-request-id": [ + "27a13b9e-431e-438e-93e2-1c986c702df2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060100Z:7aa8f8f3-7802-429d-a581-cf506e3b49cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:00:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "7128c6ba-da16-46d3-afdf-f93abc05869d" + ], + "x-ms-correlation-request-id": [ + "3bc0910c-c125-4f41-800d-ed9d4c52bcab" + ], + "x-ms-arm-service-request-id": [ + "0821f7ef-e49f-4762-9463-fdfdcaf8dc18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060240Z:3bc0910c-c125-4f41-800d-ed9d4c52bcab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:02:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/c6c04a2a-d2d1-490e-988b-a81fdc63c575?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2M2YzA0YTJhLWQyZDEtNDkwZS05ODhiLWE4MWZkYzYzYzU3NT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0279d508-3d62-471b-a631-7e19b8d1f07e" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "654a0df2-e12c-46c4-8a7e-8e3d5e45eab6" + ], + "x-ms-correlation-request-id": [ + "3c7570e0-d94f-4b9c-802b-980458615a3f" + ], + "x-ms-arm-service-request-id": [ + "3a1b33d9-eb2e-44fc-8bd9-a05919de878f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060420Z:3c7570e0-d94f-4b9c-802b-980458615a3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:20 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "82f46e16-9187-47e9-b426-dac2c1301031" + ], + "x-ms-correlation-request-id": [ + "7ef90e3a-07ea-41be-9482-d7cb88f188ec" + ], + "x-ms-arm-service-request-id": [ + "cee99104-9cd3-4312-acbe-70de5ed3476d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060432Z:7ef90e3a-07ea-41be-9482-d7cb88f188ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "9554c9c2-6465-46ce-877a-580f0da7b6c2" + ], + "x-ms-correlation-request-id": [ + "7806b7ea-2daa-4e12-b436-c8c0a93173a1" + ], + "x-ms-arm-service-request-id": [ + "cbb195e9-2051-4757-b64e-ce0befd78ac4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060442Z:7806b7ea-2daa-4e12-b436-c8c0a93173a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:04:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "7e7435aa-5815-49f1-b864-5c866ccd9bd3" + ], + "x-ms-correlation-request-id": [ + "3e795ba2-f4a4-4a10-8cb5-ab420a723aab" + ], + "x-ms-arm-service-request-id": [ + "cb82b7cd-adc8-4a6c-99a5-e286b3b6c1ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060502Z:3e795ba2-f4a4-4a10-8cb5-ab420a723aab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:05:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "8a75f7da-f587-4eff-854e-2e3955c8c6cf" + ], + "x-ms-correlation-request-id": [ + "7d5d0d7a-572f-4b13-9a00-83993e369140" + ], + "x-ms-arm-service-request-id": [ + "022508e3-1ef5-4a28-898d-e6246d412a25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060542Z:7d5d0d7a-572f-4b13-9a00-83993e369140" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:05:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "08de4e3e-fddd-44b3-8060-718d3725a113" + ], + "x-ms-correlation-request-id": [ + "3d4a05e0-8120-4c14-91b5-3c03b13ad71e" + ], + "x-ms-arm-service-request-id": [ + "c210363b-8531-42a1-b86e-a3ba94a71aab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060702Z:3d4a05e0-8120-4c14-91b5-3c03b13ad71e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:07:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "2482eed1-8fc7-4656-9f91-8b0cf0065bb4" + ], + "x-ms-correlation-request-id": [ + "967f1336-e450-40f1-a83f-6dbbfa1241e1" + ], + "x-ms-arm-service-request-id": [ + "371f2066-09d8-4a33-8ed6-5ba3c403f3f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T060943Z:967f1336-e450-40f1-a83f-6dbbfa1241e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:09:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "ed6c1895-da2e-435f-9bd2-6e9bd1214956" + ], + "x-ms-correlation-request-id": [ + "c9b6ab7a-c3b1-49ac-adc8-3d9b915dedd5" + ], + "x-ms-arm-service-request-id": [ + "4f973f39-f3d5-4d7c-989b-9ec74e24ffbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061123Z:c9b6ab7a-c3b1-49ac-adc8-3d9b915dedd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:11:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "bd5c2c29-e88b-4312-8418-e5650823f66a" + ], + "x-ms-correlation-request-id": [ + "07cd4d2a-fa56-4ec5-be5a-1a4583230e54" + ], + "x-ms-arm-service-request-id": [ + "d5740bd8-c9bb-49d9-bf55-93edbd41c1d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061304Z:07cd4d2a-fa56-4ec5-be5a-1a4583230e54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:13:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "19df29ee-6f66-42c3-8357-7989495f8c47" + ], + "x-ms-correlation-request-id": [ + "14b547b9-8585-4538-95a4-9da4c4ea63a0" + ], + "x-ms-arm-service-request-id": [ + "734e52e5-e4b9-4030-aaf4-182de6932a27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061444Z:14b547b9-8585-4538-95a4-9da4c4ea63a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:14:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/68093a7c-efa5-4d4a-8e86-96dfc2e2e2f3?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzY4MDkzYTdjLWVmYTUtNGQ0YS04ZTg2LTk2ZGZjMmUyZTJmMz9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36330bab-3f37-46f1-a178-804e36b6d61b" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a5075214-3f91-451b-8cb2-3178cdc0cfa9" + ], + "x-ms-correlation-request-id": [ + "7a51be30-7fbe-48d4-b40c-5feed09e2203" + ], + "x-ms-arm-service-request-id": [ + "3c54dc61-497d-48ac-a73c-82868cd9c776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061624Z:7a51be30-7fbe-48d4-b40c-5feed09e2203" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:24 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072/routingIntent/testRoutingIntent1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyL3JvdXRpbmdJbnRlbnQvdGVzdFJvdXRpbmdJbnRlbnQxP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "40ebcf61-00db-4555-8c5c-6c0e1dae9cbd" + ], + "azure-asyncoperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "56e33e01-a461-4e9f-9433-afd43de765f6" + ], + "x-ms-arm-service-request-id": [ + "176cdc66-3647-4ef5-98c9-594345d619a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061626Z:56e33e01-a461-4e9f-9433-afd43de765f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1589eee-1046-4214-825c-4afce32463ac" + ], + "x-ms-correlation-request-id": [ + "f0a094a1-c3ff-4e18-9c7b-b31f06bffb14" + ], + "x-ms-arm-service-request-id": [ + "3fc655b7-89e8-4237-92b1-d63c147b1c3d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061636Z:f0a094a1-c3ff-4e18-9c7b-b31f06bffb14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "27c801dd-4dbd-466b-b7a3-c7a469e52961" + ], + "x-ms-correlation-request-id": [ + "7d239abd-156e-4ec8-942d-47a962d29054" + ], + "x-ms-arm-service-request-id": [ + "5cf3d624-d5a1-4cca-9f17-16393e57d625" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061646Z:7d239abd-156e-4ec8-942d-47a962d29054" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:16:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "95fbf097-13c1-46a0-983f-a97dcb0a122b" + ], + "x-ms-correlation-request-id": [ + "41a45e4a-f74b-482f-ab76-ce20769fec8a" + ], + "x-ms-arm-service-request-id": [ + "8d80cde0-b013-4254-bd33-e7e3c250f688" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061706Z:41a45e4a-f74b-482f-ab76-ce20769fec8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:17:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "56185cad-f04c-4cdc-8bc7-43e626508882" + ], + "x-ms-correlation-request-id": [ + "b63827d4-fbbc-4b1c-bf25-8574760444c8" + ], + "x-ms-arm-service-request-id": [ + "bff766b2-6e3b-4a0f-b734-e0c6eeb916e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061747Z:b63827d4-fbbc-4b1c-bf25-8574760444c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:17:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "4ca776cb-ae4e-46cf-9ffc-f3a2fed0f894" + ], + "x-ms-correlation-request-id": [ + "74331d81-64db-4f3c-a243-1fa1522786e4" + ], + "x-ms-arm-service-request-id": [ + "837b881e-c19a-4681-bbab-f698bacb7f5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T061907Z:74331d81-64db-4f3c-a243-1fa1522786e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:19:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "3cf2f4bb-7d45-422b-9004-573e453e79d0" + ], + "x-ms-correlation-request-id": [ + "56af9847-355a-4c79-bd3e-333a59f7e435" + ], + "x-ms-arm-service-request-id": [ + "1546ea4c-706a-4fd9-97cb-6a0ae1a94748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062148Z:56af9847-355a-4c79-bd3e-333a59f7e435" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:21:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "bfa7a36b-51fe-4cc5-aecc-39596ac433c1" + ], + "x-ms-correlation-request-id": [ + "d723bfc9-9045-4d82-930f-e0c26509b78c" + ], + "x-ms-arm-service-request-id": [ + "991147e9-9629-477d-8936-f17e3a058301" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062328Z:d723bfc9-9045-4d82-930f-e0c26509b78c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:23:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "179314d0-da63-4568-afc9-a72467016990" + ], + "x-ms-correlation-request-id": [ + "cf2dad2f-50ba-406a-b7f5-f72df2f621f9" + ], + "x-ms-arm-service-request-id": [ + "af09036b-9b31-455f-bddc-f4604d653ba7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062508Z:cf2dad2f-50ba-406a-b7f5-f72df2f621f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:25:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "57751b1e-dc45-40f5-a46a-ecb850a3a932" + ], + "x-ms-correlation-request-id": [ + "3a28c99c-ad76-4f52-a9c1-32eb7ed6eae6" + ], + "x-ms-arm-service-request-id": [ + "184a0340-6362-4a29-9677-8d9ecff72be3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062648Z:3a28c99c-ad76-4f52-a9c1-32eb7ed6eae6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:26:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "51da3e8b-b300-4ca0-bbc8-7f3b0e6a1476" + ], + "x-ms-correlation-request-id": [ + "ef0d5f52-c27c-4d5c-83b6-2f1d2645ebe5" + ], + "x-ms-arm-service-request-id": [ + "b5fe621a-88bd-4631-8796-b05bb64ae1b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062829Z:ef0d5f52-c27c-4d5c-83b6-2f1d2645ebe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:28:28 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzQwZWJjZjYxLTAwZGItNDU1NS04YzVjLTZjMGUxZGFlOWNiZD9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf312e-2dce-4099-923c-303ca5b9c43d" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01" + ], + "x-ms-request-id": [ + "40ebcf61-00db-4555-8c5c-6c0e1dae9cbd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/40ebcf61-00db-4555-8c5c-6c0e1dae9cbd?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "56e33e01-a461-4e9f-9433-afd43de765f6" + ], + "x-ms-arm-service-request-id": [ + "176cdc66-3647-4ef5-98c9-594345d619a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062829Z:465c6376-c725-412f-ae82-36012a6d46bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:28:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/azureFirewalls/testFirewall1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvdGVzdEZpcmV3YWxsMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9769c1c9-d84c-4128-81c9-07bfd0ed8dd1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "3410e1e8-f4dd-4f78-859a-2ed83df5473d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "219d4d0b-3e9f-4b54-bf58-82c010b03ba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062830Z:3410e1e8-f4dd-4f78-859a-2ed83df5473d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:28:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1b926a8a-1ac8-40fc-9f04-8954fbdd755a" + ], + "x-ms-correlation-request-id": [ + "015a7aae-f2a0-4b46-ae6a-73d15c6a3a98" + ], + "x-ms-arm-service-request-id": [ + "086c2fa9-e799-4eb2-bcbc-445967d371ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062840Z:015a7aae-f2a0-4b46-ae6a-73d15c6a3a98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:28:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "3fdf9a39-80ff-4c36-aa68-f416a030f3a2" + ], + "x-ms-correlation-request-id": [ + "da1f2238-1b8e-4add-8738-017a503f97da" + ], + "x-ms-arm-service-request-id": [ + "7ea2d615-23ff-4a68-a87b-de96bb6bc5c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062851Z:da1f2238-1b8e-4add-8738-017a503f97da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:28:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "590daf95-6f9b-4256-a6db-9619f76865aa" + ], + "x-ms-correlation-request-id": [ + "1ca68052-754e-4ce2-9bf7-61675abd41e8" + ], + "x-ms-arm-service-request-id": [ + "cfb79cba-2930-4479-8f3d-134d6d53c9f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062911Z:1ca68052-754e-4ce2-9bf7-61675abd41e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:29:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "5dc7db74-247c-4317-8696-86dc866c3af5" + ], + "x-ms-correlation-request-id": [ + "8eb1fefe-c954-4500-b467-6ce7888731e4" + ], + "x-ms-arm-service-request-id": [ + "5e4b74cd-e732-475b-8117-3a4068024c66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T062931Z:8eb1fefe-c954-4500-b467-6ce7888731e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:29:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "fb85f071-4b6d-4717-a6d9-42ac8e1a1690" + ], + "x-ms-correlation-request-id": [ + "63beb456-04d7-4447-a5fb-c65e4613b1d7" + ], + "x-ms-arm-service-request-id": [ + "95ce21c0-cb89-48bc-a32d-0dc14b2eef3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063011Z:63beb456-04d7-4447-a5fb-c65e4613b1d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:30:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "38ddd684-8bf8-4e03-86e3-d1cb096dc0b5" + ], + "x-ms-correlation-request-id": [ + "c772540a-9206-4e4d-a370-d399d17abd04" + ], + "x-ms-arm-service-request-id": [ + "70534438-4403-4de5-8930-dec476289894" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063051Z:c772540a-9206-4e4d-a370-d399d17abd04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:30:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "f15dc669-6c49-472e-aaf5-bb78dcebba32" + ], + "x-ms-correlation-request-id": [ + "f6b9c783-f6a6-40dc-b563-81382c16f244" + ], + "x-ms-arm-service-request-id": [ + "cfe92e9f-109f-4b29-a17a-b4ca81561991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063211Z:f6b9c783-f6a6-40dc-b563-81382c16f244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:32:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f698e09-d06f-4e1e-a1b7-3fdb910d1013" + ], + "x-ms-correlation-request-id": [ + "546980d2-2176-48ef-9842-7df2bfe6f65d" + ], + "x-ms-arm-service-request-id": [ + "06f461a0-9479-4ac5-a4c5-0278115a5eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063452Z:546980d2-2176-48ef-9842-7df2bfe6f65d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:34:52 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzk3NjljMWM5LWQ4NGMtNDEyOC04MWM5LTA3YmZkMGVkOGRkMT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db82a33-da2c-4915-b655-7fc1516eff97" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01" + ], + "x-ms-request-id": [ + "9769c1c9-d84c-4128-81c9-07bfd0ed8dd1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/9769c1c9-d84c-4128-81c9-07bfd0ed8dd1?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "3410e1e8-f4dd-4f78-859a-2ed83df5473d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "219d4d0b-3e9f-4b54-bf58-82c010b03ba6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063452Z:ca82ed61-e01d-4d3a-9084-c4f0ea8617f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:34:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualHubs/ps5072?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM1MDcyP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "49a8315b-6c1d-4a7b-859d-b11dbd419425" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "81264fbe-7727-4ffb-9ad5-f36cffec4e4d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "d2f8defa-7fbb-4d16-92f0-47b16a70c0f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063453Z:81264fbe-7727-4ffb-9ad5-f36cffec4e4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:34:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "21ea9894-dae5-46b2-b945-1597674de70a" + ], + "x-ms-correlation-request-id": [ + "9a53b5df-a6cf-4b6a-95b8-dc0651531917" + ], + "x-ms-arm-service-request-id": [ + "54b037cd-6f31-47b0-b735-747ab2f36e74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063503Z:9a53b5df-a6cf-4b6a-95b8-dc0651531917" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:35:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "db3ef3c0-189f-416e-8433-da842dd73b7c" + ], + "x-ms-correlation-request-id": [ + "fc4d6194-63c5-471b-acf4-3efa0bea61be" + ], + "x-ms-arm-service-request-id": [ + "28ad4b23-9a7f-4855-a382-e8898fb69e5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063513Z:fc4d6194-63c5-471b-acf4-3efa0bea61be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:35:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "765b916d-5e3b-4854-a842-0e8f250a77a7" + ], + "x-ms-correlation-request-id": [ + "8705615b-7c81-4f63-bf63-99536dc4fd1a" + ], + "x-ms-arm-service-request-id": [ + "b0806354-f58d-4e34-9f53-fcc0a2fe6701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063534Z:8705615b-7c81-4f63-bf63-99536dc4fd1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:35:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "711a1ff1-f2c5-4547-bb5e-6e8b49308b3c" + ], + "x-ms-correlation-request-id": [ + "c5be4b76-5a53-4024-9858-89f31bdb454b" + ], + "x-ms-arm-service-request-id": [ + "a2f8d6e6-11cc-42db-938d-7501c1c3c65b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063554Z:c5be4b76-5a53-4024-9858-89f31bdb454b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:35:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "c4b51187-3950-4aec-9654-b38729648968" + ], + "x-ms-correlation-request-id": [ + "b03db16a-153a-48b1-89f1-58fbfb624a5f" + ], + "x-ms-arm-service-request-id": [ + "b9d9e748-973c-4961-995d-6141af3e58b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063634Z:b03db16a-153a-48b1-89f1-58fbfb624a5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:36:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "de6a85e3-eed4-43f3-b4fa-69077048d556" + ], + "x-ms-correlation-request-id": [ + "95b22584-4807-4298-8edf-b950d7cdc52f" + ], + "x-ms-arm-service-request-id": [ + "85025e51-e60c-46d7-bd5e-bf7f2d377605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063714Z:95b22584-4807-4298-8edf-b950d7cdc52f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:37:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "c2bbd939-8443-4a40-bce8-213923fe9a19" + ], + "x-ms-correlation-request-id": [ + "067e197e-e5ab-4ce8-8526-ff0a4a964a02" + ], + "x-ms-arm-service-request-id": [ + "4b2600a9-4438-4eed-a873-27ac21f97005" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T063834Z:067e197e-e5ab-4ce8-8526-ff0a4a964a02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:38:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "024b44cf-015d-4c36-8e5b-37aa59ed4fe4" + ], + "x-ms-correlation-request-id": [ + "c41149c9-93ca-4ae9-8bed-0c91f3b2c8cb" + ], + "x-ms-arm-service-request-id": [ + "91645dcf-82e5-4083-a546-8e5c3aa382c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064115Z:c41149c9-93ca-4ae9-8bed-0c91f3b2c8cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:41:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "1455e8d8-907b-4b8f-a1d5-107a0359acd8" + ], + "x-ms-correlation-request-id": [ + "42eabc5c-0d3a-4542-a19f-b9b04ae57069" + ], + "x-ms-arm-service-request-id": [ + "8726eaef-da64-4376-afe0-dfc828e1804f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064255Z:42eabc5c-0d3a-4542-a19f-b9b04ae57069" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:42:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "f2d6b236-0d85-4bdc-bfb9-917ca2f64a62" + ], + "x-ms-correlation-request-id": [ + "aca92fa7-969e-4428-981f-3a2b3e94acbb" + ], + "x-ms-arm-service-request-id": [ + "850b46c6-a315-4dfd-ac6c-55b3094c28ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064435Z:aca92fa7-969e-4428-981f-3a2b3e94acbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:44:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "185f633e-be68-42ac-84d4-66c20688b015" + ], + "x-ms-correlation-request-id": [ + "1c71061b-166a-4793-b26e-7cf8504cc96f" + ], + "x-ms-arm-service-request-id": [ + "f10ab1c9-08ac-483d-8b39-81b4de58a2c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064615Z:1c71061b-166a-4793-b26e-7cf8504cc96f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:15 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzQ5YTgzMTViLTZjMWQtNGE3Yi04NTlkLWIxMWRiZDQxOTQyNT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7b66efe-a236-4400-b93b-a4a92a3a95cb" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01" + ], + "x-ms-request-id": [ + "49a8315b-6c1d-4a7b-859d-b11dbd419425" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/49a8315b-6c1d-4a7b-859d-b11dbd419425?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "81264fbe-7727-4ffb-9ad5-f36cffec4e4d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "d2f8defa-7fbb-4d16-92f0-47b16a70c0f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064615Z:802b7fcb-3b7e-450f-9705-e385f7eebd8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps7209/providers/Microsoft.Network/virtualWans/ps4373?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNzIwOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDgtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15c5e0a9-1dc2-4b56-af14-ce319af98ef0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fc100dd-72b3-4d2d-93ad-f38606933291" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "fa01f75d-bc24-42df-81b8-0f2f4807e389" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c7c29fbf-beb4-41e5-959f-1c3130da3da8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064617Z:fa01f75d-bc24-42df-81b8-0f2f4807e389" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzFmYzEwMGRkLTcyYjMtNGQyZC05M2FkLWYzODYwNjkzMzI5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15c5e0a9-1dc2-4b56-af14-ce319af98ef0" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7b48c70f-9ce2-4ec2-8b52-42c7f0ba9c97" + ], + "x-ms-correlation-request-id": [ + "27822aca-b0ab-4bc7-9a78-7f73609e62d7" + ], + "x-ms-arm-service-request-id": [ + "643a0ee1-7e7d-41f6-9837-311906c40061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064627Z:27822aca-b0ab-4bc7-9a78-7f73609e62d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:26 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzFmYzEwMGRkLTcyYjMtNGQyZC05M2FkLWYzODYwNjkzMzI5MT9hcGktdmVyc2lvbj0yMDIxLTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15c5e0a9-1dc2-4b56-af14-ce319af98ef0" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Network.NetworkManagementClient/22.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operationResults/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01" + ], + "x-ms-request-id": [ + "1fc100dd-72b3-4d2d-93ad-f38606933291" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/centraluseuap/operations/1fc100dd-72b3-4d2d-93ad-f38606933291?api-version=2021-08-01" + ], + "x-ms-correlation-request-id": [ + "fa01f75d-bc24-42df-81b8-0f2f4807e389" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c7c29fbf-beb4-41e5-959f-1c3130da3da8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064627Z:c5fb9f30-e87f-422d-9b93-ad47a363619f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps7209?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNzIwOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "101839f4-2103-4a84-9de3-af0e1a4982c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcyMDktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f545f357-d85a-40af-bbef-9d046d55a557" + ], + "x-ms-correlation-request-id": [ + "f545f357-d85a-40af-bbef-9d046d55a557" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064629Z:f545f357-d85a-40af-bbef-9d046d55a557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcyMDktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeU1Ea3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b7ee00cd-1b8d-4e52-977b-ec0f26f3b0fa" + ], + "x-ms-correlation-request-id": [ + "b7ee00cd-1b8d-4e52-977b-ec0f26f3b0fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064644Z:b7ee00cd-1b8d-4e52-977b-ec0f26f3b0fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcyMDktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeU1Ea3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.21202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e42d4bce-10dc-4189-8305-903f7db2e005" + ], + "x-ms-correlation-request-id": [ + "e42d4bce-10dc-4189-8305-903f7db2e005" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220529T064644Z:e42d4bce-10dc-4189-8305-903f7db2e005" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 29 May 2022 06:46:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-RoutingIntentCRUD": [ + "ps7209", + "ps4373", + "ps5072" + ] + }, + "Variables": { + "SubscriptionId": "62364504-2406-418e-971c-05822ff72fad" + } +} \ No newline at end of file diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 0d1ed7d0d591..f2dc0ccbc474 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -427,7 +427,11 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Remove-AzVirtualHub', 'Set-AzVirtualHub', 'New-AzVirtualHubRoute', 'Add-AzVirtualHubRoute', 'New-AzVirtualHubRouteTable', 'Add-AzVirtualHubRouteTable', 'Get-AzVirtualHubRouteTable', - 'Remove-AzVirtualHubRouteTable', 'New-AzVpnGateway', + 'Remove-AzVirtualHubRouteTable', 'New-AzRoutingPolicy', + 'Get-AzRoutingPolicy', 'Add-AzRoutingPolicy', + 'Remove-AzRoutingPolicy', 'Set-AzRoutingPolicy', 'New-AzRoutingIntent', + 'Get-AzRoutingIntent', 'Set-AzRoutingIntent', + 'Remove-AzRoutingIntent', 'New-AzVpnGateway', 'Reset-AzVpnGateway', 'Get-AzVpnGateway', 'Update-AzVpnGateway', 'Remove-AzVpnGateway', 'Start-AzVpnGatewayPacketCapture', 'Stop-AzVpnGatewayPacketCapture', 'New-AzVpnGatewayNatRule', diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 61e95d64bf07..a7bd42f0242a 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -44,6 +44,16 @@ - `New-AzVpnServerConfigurationPolicyGroup` - `Update-AzVpnServerConfigurationPolicyGroup` - `Remove-AzVpnServerConfigurationPolicyGroup` +* Added new cmdlets for RoutingIntent child resource of VirtualHub. + -`Add-AzRoutingPolicy` + -`Get-AzRoutingPolicy` + -`New-AzRoutingPolicy` + -`Remove-AzRoutingPolicy` + -`Set-AzRoutingPolicy` + -`Get-AzRoutingIntent` + -`New-AzRoutingIntent` + -`Remove-AzRoutingIntent` + -`Set-AzRoutingIntent` * Updated cmdlets to add new option of `HubRoutingPreference` in RouteServer. - `New-AzRouteServer` - `Update-AzRouteServer` diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index fb2b01abd90e..40df0dff129f 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1231,6 +1231,15 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); + //// Virtual Hub Routing Intent + // CNM to MNM + cfg.CreateMap(); + cfg.CreateMap(); + + // MNM to CNM + cfg.CreateMap(); + cfg.CreateMap(); + // Virtual wan Point to site // MNM to CNM cfg.CreateMap(); diff --git a/src/Network/Network/Cortex/CortexParameterSetNames.cs b/src/Network/Network/Cortex/CortexParameterSetNames.cs index 19a4b9d508fa..d93f40dc8ad8 100644 --- a/src/Network/Network/Cortex/CortexParameterSetNames.cs +++ b/src/Network/Network/Cortex/CortexParameterSetNames.cs @@ -84,5 +84,9 @@ internal static class CortexParameterSetNames internal const string ByHubBgpConnectionObject = "ByHubBgpConnectionObject"; internal const string ByHubBgpConnectionResourceId = "ByHubBgpConnectionResourceId"; - } + internal const string ByRoutingIntentName = "ByRoutingInctentName"; + internal const string ByRoutingIntentResourceId = "ByRoutingInctentResourceId"; + internal const string ByRoutingIntentObject = "ByRoutingInctentObject"; + + } } \ No newline at end of file diff --git a/src/Network/Network/Cortex/RoutingIntent/GetAzureRmRoutingIntentCommand.cs b/src/Network/Network/Cortex/RoutingIntent/GetAzureRmRoutingIntentCommand.cs new file mode 100644 index 000000000000..3403bad178ad --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/GetAzureRmRoutingIntentCommand.cs @@ -0,0 +1,98 @@ + +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet(VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingIntent", + DefaultParameterSetName = CortexParameterSetNames.ByVirtualHubName), + OutputType(typeof(PSRoutingIntent))] + public class GetAzureRmRoutingIntentCommand : RoutingIntentBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName", "ParentResourceName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The parent resource name.")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs", "ResourceGroupName")] + public string HubName { get; set; } + + [Alias("ParentObject", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent resource.")] + public PSVirtualHub VirtualHub { get; set; } + + [Alias("VirtualHubId", "ParentVirtualHubId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubResourceId, + HelpMessage = "The parent resource id.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs")] + public string ParentResourceId { get; set; } + + [Alias("ResourceName", "RoutingIntentName")] + [Parameter( + Mandatory = false, + HelpMessage = "The resource name.")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs/routingIntent", "ResourceGroupName", "ParentResourceName")] + [ValidateNotNullOrEmpty] + [SupportsWildcards] + public string Name { get; set; } + + public override void Execute() + { + base.Execute(); + + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + this.HubName = this.VirtualHub.Name; + this.ResourceGroupName = this.VirtualHub.ResourceGroupName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ParentResourceId); + this.HubName = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + if (ShouldGetByName(ResourceGroupName, Name)) + { + WriteObject(GetRoutingIntent(this.ResourceGroupName, this.HubName, this.Name)); + } + else + { + WriteObject(SubResourceWildcardFilter(Name, this.ListRoutingIntents(this.ResourceGroupName, this.HubName)), true); + } + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/NewAzureRmRoutingIntentCommand.cs b/src/Network/Network/Cortex/RoutingIntent/NewAzureRmRoutingIntentCommand.cs new file mode 100644 index 000000000000..604dbed18b18 --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/NewAzureRmRoutingIntentCommand.cs @@ -0,0 +1,119 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet(VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingIntent", + DefaultParameterSetName = CortexParameterSetNames.ByVirtualHubName, + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingIntent))] + public class NewAzureRmRoutingIntentCommand : RoutingIntentBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent resource.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("VirtualHubId", "ParentVirtualHubId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubResourceId, + HelpMessage = "The parent resource.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs")] + public string ParentResourceId { get; set; } + + [Alias("ResourceName", "RoutingIntentName")] + [Parameter( + Mandatory = true, + HelpMessage = "Name of the routing intent resource.")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The list of policies for this routing intent resource.")] + public PSRoutingPolicy[] RoutingPolicy { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + this.ResourceGroupName = this.ParentObject.ResourceGroupName; + this.ParentResourceName = this.ParentObject.Name; + } + else if (ParameterSetName.Contains(CortexParameterSetNames.ByVirtualHubResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ParentResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ResourceName; + } + + if (this.IsRoutingIntentPresent(this.ResourceGroupName, this.ParentResourceName)) + { + throw new PSArgumentException(string.Format(Properties.Resources.SameTypeChildResourceAlreadyPresentInResourceGroup, this.Name, this.ResourceGroupName, this.ParentResourceName)); + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + PSRoutingIntent routingIntent = new PSRoutingIntent + { + Name = this.Name, + RoutingPolicies = this.RoutingPolicy.ToList() + }; + + ConfirmAction( + Properties.Resources.CreatingResourceMessage, + this.Name, + () => + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + WriteObject(this.CreateOrUpdateRoutingIntent(this.ResourceGroupName, this.ParentResourceName, this.Name, routingIntent)); + }); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RemoveAzureRmRoutingIntentCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RemoveAzureRmRoutingIntentCommand.cs new file mode 100644 index 000000000000..0caa0ef917ca --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RemoveAzureRmRoutingIntentCommand.cs @@ -0,0 +1,151 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + using Microsoft.Azure.Management.Network; + + [Cmdlet(VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingIntent", + DefaultParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class RemoveAzureRmRoutingIntentCommand : RoutingIntentBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "RoutingIntentName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "Name of the routing intent resource.")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "Name of therouting intent resource.")] + public string Name { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent virtual hub object.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("RoutingIntent")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentObject, + HelpMessage = "The routing intent resource to delete.")] + public PSRoutingIntent InputObject { get; set; } + + [Alias("RoutingIntentId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentResourceId, + HelpMessage = "The resource id of the routing intent to delete.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs/routingIntent")] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation if you want to delete a resource")] + public SwitchParameter Force { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Returns an object representing the item on which this operation is being performed.")] + public SwitchParameter PassThru { get; set; } + + public override void Execute() + { + base.Execute(); + PSRoutingIntent routingIntentToDelete = null; + if (ParameterSetName.Equals(CortexParameterSetNames.ByRoutingIntentObject, StringComparison.OrdinalIgnoreCase)) + { + routingIntentToDelete = this.InputObject; + this.ResourceId = this.InputObject.Id; + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.RoutingIntentNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByRoutingIntentResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + var parentResourceId = this.ParentObject.Id; + var parsedParentResourceId = new ResourceIdentifier(parentResourceId); + this.ResourceGroupName = parsedParentResourceId.ResourceGroupName; + this.ParentResourceName = parsedParentResourceId.ResourceName; + } + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + ConfirmAction( + Force.IsPresent, + string.Format(Properties.Resources.RemoveRoutingIntentWarning), + Properties.Resources.RemoveResourceMessage, + this.Name, + () => + { + RoutingIntentClient.Delete(this.ResourceGroupName, this.ParentResourceName, this.Name); + if (PassThru) + { + WriteObject(true); + } + }); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingIntentBaseCmdlet.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingIntentBaseCmdlet.cs new file mode 100644 index 000000000000..9cc953a6a64e --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingIntentBaseCmdlet.cs @@ -0,0 +1,88 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using AutoMapper; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Management.Network; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using MNM = Microsoft.Azure.Management.Network.Models; + + public class RoutingIntentBaseCmdlet : NetworkBaseCmdlet + { + public IRoutingIntentOperations RoutingIntentClient + { + get + { + return NetworkClient.NetworkManagementClient.RoutingIntent; + } + } + + public PSRoutingIntent ToPsRoutingIntent(MNM.RoutingIntent routingIntent) + { + var psRoutingIntent = NetworkResourceManagerProfile.Mapper.Map(routingIntent); + + return psRoutingIntent; + } + + public PSRoutingIntent GetRoutingIntent(string resourceGroupName, string virtualHubName, string name) + { + var routingIntent = RoutingIntentClient.Get(resourceGroupName, virtualHubName, name); + var psRoutingIntent = ToPsRoutingIntent(routingIntent); + + return psRoutingIntent; + } + + public List ListRoutingIntents(string resourceGroupName, string virtualHubName) + { + var routingIntents = RoutingIntentClient.List(resourceGroupName, virtualHubName); + + List routingIntentsToReturn = new List(); + if (routingIntents != null) + { + foreach (MNM.RoutingIntent routingIntent in routingIntents) + { + routingIntentsToReturn.Add(ToPsRoutingIntent(routingIntent)); + } + } + + return routingIntentsToReturn; + } + + public PSRoutingIntent CreateOrUpdateRoutingIntent(string resourceGroupName, string virtualHubName, string routingIntentName, PSRoutingIntent routingIntent) + { + var routingIntentModel = NetworkResourceManagerProfile.Mapper.Map(routingIntent); + var routingIntentCreated = RoutingIntentClient.CreateOrUpdate(resourceGroupName, virtualHubName, routingIntentName, routingIntentModel); + return ToPsRoutingIntent(routingIntentCreated); + } + + public bool IsRoutingIntentPresent(string resourceGroupName, string parentHubName) + { + return ListRoutingIntents(resourceGroupName, parentHubName).Count > 0; + } + + public void IsParentVirtualHubPresent(string resourceGroupName, string parentHubName) + { + // Get the virtual hub - this will throw not found if the resource does not exist + PSVirtualHub resolvedVirtualHub = new VirtualHubBaseCmdlet().GetVirtualHub(resourceGroupName, parentHubName); + if (resolvedVirtualHub == null) + { + throw new PSArgumentException(Properties.Resources.ParentVirtualHubNotFound); + } + } + } +} \ No newline at end of file diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/AddAzureRmRoutingPolicyCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/AddAzureRmRoutingPolicyCommand.cs new file mode 100644 index 000000000000..0365319aaebd --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/AddAzureRmRoutingPolicyCommand.cs @@ -0,0 +1,86 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.Add, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingPolicy", + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingIntent))] + public class AddAzureRmRoutingPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The reference of the routing intent resource.", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + public PSRoutingIntent RoutingIntent { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "List of all destinations which this routing policy is applicable to (for example: Internet, PrivateTraffic).")] + [ValidateNotNullOrEmpty] + public string[] Destination { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The next hop resource id on which this routing policy is applicable to.")] + [ValidateNotNullOrEmpty] + public string NextHop { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The unique name for this routing policy.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void Execute() + { + if (this.RoutingIntent == null) + { + throw new ArgumentException("The given routing intent does not exist."); + } + + if (this.RoutingIntent.RoutingPolicies == null) + { + this.RoutingIntent.RoutingPolicies = new List(); + } + else + { + var existingRoutingPolicy = this.RoutingIntent.RoutingPolicies.SingleOrDefault( + policy => string.Equals(policy.Name, this.Name, StringComparison.CurrentCultureIgnoreCase)); + if (existingRoutingPolicy != null) + { + throw new ArgumentException("RoutingPolicy with specified name already exists"); + } + } + + var routingPolicy = new PSRoutingPolicy + { + Name = this.Name, + Destinations = this.Destination?.ToList(), + NextHop = this.NextHop, + }; + this.RoutingIntent.RoutingPolicies.Add(routingPolicy); + WriteObject(this.RoutingIntent); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/GetAzureRmRoutingPolicyCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/GetAzureRmRoutingPolicyCommand.cs new file mode 100644 index 000000000000..993b6aa56df1 --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/GetAzureRmRoutingPolicyCommand.cs @@ -0,0 +1,63 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingPolicy", + SupportsShouldProcess = false), + OutputType(typeof(PSRoutingPolicy))] + public class GetAzureRmRoutingPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The reference of the routing intent resource.", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + public PSRoutingIntent RoutingIntent { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The unique name for this routing policy.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void Execute() + { + base.Execute(); + if (this.RoutingIntent == null || this.RoutingIntent.RoutingPolicies == null) + { + throw new ArgumentException("The given routing intent does not exist nor routing policies."); + } + + if (!string.IsNullOrWhiteSpace(this.Name)) + { + + var routingPolicy = this.RoutingIntent.RoutingPolicies.SingleOrDefault( + policy => string.Equals(policy.Name, this.Name, StringComparison.CurrentCultureIgnoreCase)); + WriteObject(routingPolicy); + } + else + { + throw new ArgumentException("The routing policy with given name does not exist."); + } + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/NewAzureRmRoutingPolicyCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/NewAzureRmRoutingPolicyCommand.cs new file mode 100644 index 000000000000..beb89068e735 --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/NewAzureRmRoutingPolicyCommand.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingPolicy", + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingPolicy))] + public class NewAzureRmRoutingPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "List of all destinations which this routing policy is applicable to (for example: Internet, PrivateTraffic).")] + [ValidateNotNullOrEmpty] + public string[] Destination { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The next hop resource id on which this routing policy is applicable to.")] + [ValidateNotNullOrEmpty] + public string NextHop { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The unique name for this routing policy.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void Execute() + { + base.Execute(); + + var routingPolicy = new PSRoutingPolicy + { + Name = this.Name, + Destinations = this.Destination?.ToList(), + NextHop = this.NextHop, + }; + + WriteObject(routingPolicy); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/RemoveAzureRmRoutingPolicyCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/RemoveAzureRmRoutingPolicyCommand.cs new file mode 100644 index 000000000000..d46bee6bc61b --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/RemoveAzureRmRoutingPolicyCommand.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingPolicy", + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingIntent))] + public class RemoveAzureRmRoutingPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The reference of the routing intent resource.", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + public PSRoutingIntent RoutingIntent { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The unique name for this routing policy.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void Execute() + { + if (this.RoutingIntent == null) + { + throw new ArgumentException("The given routing intent does not exist."); + } + + if (this.RoutingIntent.RoutingPolicies == null || !this.RoutingIntent.RoutingPolicies.Any()) + { + WriteObject(this.RoutingIntent); + return; + } + + var routingPolicyToRemove = this.RoutingIntent.RoutingPolicies.SingleOrDefault( + policy => string.Equals(policy.Name, this.Name, StringComparison.CurrentCultureIgnoreCase)); + + if (routingPolicyToRemove != null) + { + this.RoutingIntent.RoutingPolicies.Remove(routingPolicyToRemove); + } + + if(this.RoutingIntent.RoutingPolicies.Count == 0) + { + this.RoutingIntent.RoutingPolicies = null; + } + + WriteObject(this.RoutingIntent); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/SetAzureRmRoutingPolicyCommand.cs b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/SetAzureRmRoutingPolicyCommand.cs new file mode 100644 index 000000000000..bb18c47fd17b --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/RoutingPolicy/SetAzureRmRoutingPolicyCommand.cs @@ -0,0 +1,82 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingPolicy", + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingIntent))] + public class SetAzureRmRoutingPolicyCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The reference of the routing intent resource.", + ValueFromPipeline = true, + ValueFromPipelineByPropertyName = true)] + public PSRoutingIntent RoutingIntent { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "List of all destinations which this routing policy is applicable to (for example: Internet, PrivateTraffic).")] + [ValidateNotNullOrEmpty] + public string[] Destination { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The next hop resource id on which this routing policy is applicable to.")] + [ValidateNotNullOrEmpty] + public string NextHop { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The unique name for this routing policy.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + public override void Execute() + { + base.Execute(); + if (this.RoutingIntent == null || this.RoutingIntent.RoutingPolicies == null) + { + throw new ArgumentException("The given routing intent does not exist nor routing policies."); + } + + var routingPolicyIndex = this.RoutingIntent.RoutingPolicies.IndexOf( + this.RoutingIntent.RoutingPolicies.SingleOrDefault( + policy => string.Equals(policy.Name, this.Name, StringComparison.CurrentCultureIgnoreCase))); + + if(routingPolicyIndex == -1) + { + throw new ArgumentException("RoutingPolicy with specified name does not exist"); + } + + var routingPolicy = new PSRoutingPolicy + { + Name = this.Name, + Destinations = this.Destination?.ToList(), + NextHop = this.NextHop, + }; + this.RoutingIntent.RoutingPolicies[routingPolicyIndex] = routingPolicy; + + WriteObject(this.RoutingIntent); + } + } +} diff --git a/src/Network/Network/Cortex/RoutingIntent/SetAzureRmRoutingIntentCommand.cs b/src/Network/Network/Cortex/RoutingIntent/SetAzureRmRoutingIntentCommand.cs new file mode 100644 index 000000000000..ba2ae5b8afd0 --- /dev/null +++ b/src/Network/Network/Cortex/RoutingIntent/SetAzureRmRoutingIntentCommand.cs @@ -0,0 +1,158 @@ +// ---------------------------------------------------------------------------------- +// +// 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 +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet("Set", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingIntent", + DefaultParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + SupportsShouldProcess = true), + OutputType(typeof(PSRoutingIntent))] + public class SetAzureRmRoutingIntentCommand : RoutingIntentBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "RoutingIntentName", "RouteTableName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentName, + HelpMessage = "Name of the route table.")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "Name of the route table.")] + public string Name { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent virtual hub object.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("RoutingIntent")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentObject, + HelpMessage = "The routing intent resource to modify.")] + public PSRoutingIntent InputObject { get; set; } + + [Alias("RoutingIntentId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByRoutingIntentResourceId, + HelpMessage = "The resource id of the routing intent to modify.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs/routingIntent")] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The list of routing policies for this routing intent resource.")] + public PSRoutingPolicy[] RoutingPolicy { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + PSRoutingIntent routingIntentToUpdate = null; + if (ParameterSetName.Equals(CortexParameterSetNames.ByRoutingIntentObject, StringComparison.OrdinalIgnoreCase)) + { + routingIntentToUpdate = this.InputObject; + this.ResourceId = this.InputObject.Id; + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.RoutingIntentNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByRoutingIntentResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + var parentResourceId = this.ParentObject.Id; + var parsedParentResourceId = new ResourceIdentifier(parentResourceId); + this.ResourceGroupName = parsedParentResourceId.ResourceGroupName; + this.ParentResourceName = parsedParentResourceId.ResourceName; + } + + try + { + routingIntentToUpdate = this.GetRoutingIntent(this.ResourceGroupName, this.ParentResourceName, this.Name); + } + catch (Exception ex) + { + if (ex is Microsoft.Azure.Management.Network.Models.ErrorException || ex is Rest.Azure.CloudException) + { + throw new PSArgumentException(Properties.Resources.RoutingIntentNotFound); + } + throw; + } + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + if (this.RoutingPolicy != null) + { + routingIntentToUpdate.RoutingPolicies = this.RoutingPolicy.ToList(); + } + + ConfirmAction( + Properties.Resources.SettingResourceMessage, + this.Name, + () => + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + WriteObject(this.CreateOrUpdateRoutingIntent(this.ResourceGroupName, this.ParentResourceName, this.Name, routingIntentToUpdate)); + }); + } + } +} diff --git a/src/Network/Network/Models/Cortex/PSRoutingIntent.cs b/src/Network/Network/Models/Cortex/PSRoutingIntent.cs new file mode 100644 index 000000000000..21e5eb47205f --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSRoutingIntent.cs @@ -0,0 +1,63 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; + + public class PSRoutingIntent : PSChildResource + { + [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + + [Ps1Xml(Label = "Routing Policies", Target = ViewControl.Table)] + public List RoutingPolicies { get; set; } + + [JsonIgnore] + public string RoutingPoliciesText + { + get { return JsonConvert.SerializeObject(RoutingPolicies, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + } + + public class PSRoutingPolicy + { + [Ps1Xml(Label = "Name", Target = ViewControl.Table)] + public string Name { get; set; } + + public string DestinationType + { + get + { + return "TrafficType"; + } + } + + [Ps1Xml(Label = "Destinations", Target = ViewControl.Table)] + public List Destinations { get; set; } + + public string NextHopType + { + get + { + return "ResourceId"; + } + } + + [Ps1Xml(Label = "Next Hop", Target = ViewControl.Table)] + public string NextHop { get; set; } + } +} diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml index 94e80d865f2e..c3d91d79296a 100644 --- a/src/Network/Network/Network.format.ps1xml +++ b/src/Network/Network/Network.format.ps1xml @@ -6907,5 +6907,35 @@ + + Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + + Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + + + + + + + + Name + + + + Id + + + + ProvisioningState + + + + RoutingPoliciesText + + + + + + diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs index 516876cf79bb..829154888a70 100644 --- a/src/Network/Network/Properties/Resources.Designer.cs +++ b/src/Network/Network/Properties/Resources.Designer.cs @@ -457,25 +457,23 @@ internal static string ContainerNetworkInterfaceConfigurationNameNotSet { } /// - /// Looks up a localized string similar to Creating resource with ResourceGroupName {0}, ResourceName {1}.. + /// Looks up a localized string similar to Creating child resource with ResourceGroupName {0}, ParentResourceName {1} ResourceName {2}.. /// - internal static string CreatingLongRunningOperationMessage { + internal static string CreatingChildResourceLongRunningOperationMessage { get { - return ResourceManager.GetString("CreatingLongRunningOperationMessage", resourceCulture); + return ResourceManager.GetString("CreatingChildResourceLongRunningOperationMessage", resourceCulture); } } - + /// - /// Looks up a localized string similar to Creating child resource with ResourceGroupName {0}, ParentResourceName {1} ResourceName {2}.. + /// Looks up a localized string similar to Creating resource with ResourceGroupName {0}, ResourceName {1}.. /// - internal static string CreatingChildResourceLongRunningOperationMessage - { - get - { - return ResourceManager.GetString("CreatingChildResourceLongRunningOperationMessage", resourceCulture); + internal static string CreatingLongRunningOperationMessage { + get { + return ResourceManager.GetString("CreatingLongRunningOperationMessage", resourceCulture); } } - + /// /// Looks up a localized string similar to Creating Resource. /// @@ -864,7 +862,7 @@ internal static string InvalidStorageId { } /// - /// Looks up a localized string similar to TargetResourceId specified in flow log is not a valid resource ID of Network security group.. + /// Looks up a localized string similar to TargetResourceId specified in flow log is not a valid resource ID of Network security group, Virtual Network, Subnet or Network Interface.. /// internal static string InvalidTargetResourceId { get { @@ -1078,18 +1076,16 @@ internal static string ParentVpnGatewayNotFound { return ResourceManager.GetString("ParentVpnGatewayNotFound", resourceCulture); } } - + /// /// Looks up a localized string similar to The parent VpnServerConfiguration for this PolicyGroup cannot be found.. /// - internal static string ParentVpnServerConfigurationNotFound - { - get - { + internal static string ParentVpnServerConfigurationNotFound { + get { return ResourceManager.GetString("ParentVpnServerConfigurationNotFound", resourceCulture); } } - + /// /// Looks up a localized string similar to IP version is undefined. /// @@ -1162,6 +1158,15 @@ internal static string RemoveRouteServerWarning { } } + /// + /// Looks up a localized string similar to Removing this Routing Intent resource will remove all routing policies present in this and may affect the routing in your VirtualHub. + /// + internal static string RemoveRoutingIntentWarning { + get { + return ResourceManager.GetString("RemoveRoutingIntentWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing this HubRouteTable will remove all routes present in this and may affect the routing in your VirtualHub.. /// @@ -1297,6 +1302,24 @@ internal static string RouteTableNotFound { } } + /// + /// Looks up a localized string similar to The routing intent resource could not be found. + /// + internal static string RoutingIntentNotFound { + get { + return ResourceManager.GetString("RoutingIntentNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only one child allowed. A resource with name {0} and same type already exists in ResourceGroup {1}, ParentResource {2}. If you wish to modify this resource please use the Update operation instead.. + /// + internal static string SameTypeChildResourceAlreadyPresentInResourceGroup { + get { + return ResourceManager.GetString("SameTypeChildResourceAlreadyPresentInResourceGroup", resourceCulture); + } + } + /// /// Looks up a localized string similar to SetByFqdn. /// @@ -1746,18 +1769,7 @@ internal static string VpnConnectionNotFound { return ResourceManager.GetString("VpnConnectionNotFound", resourceCulture); } } - - /// - /// Looks up a localized string similar to The VpnServerConfigurationPolicyGroup could not be found.. - /// - internal static string VpnServerConfigurationPolicyGroupNotFound - { - get - { - return ResourceManager.GetString("VpnServerConfigurationPolicyGroupNotFound", resourceCulture); - } - } - + /// /// Looks up a localized string similar to Update request for VpnConnection contains deprecated property. Please use corresponding VpnSiteLinkConnection property instead.. /// @@ -1793,18 +1805,7 @@ internal static string VpnGatewayRequiredToCreateVpnConnection { return ResourceManager.GetString("VpnGatewayRequiredToCreateVpnConnection", resourceCulture); } } - - /// - /// Looks up a localized string similar to A valid VpnServerConfiguration reference is required to create or update a PolicyGroup.. - /// - internal static string VpnServerConfigurationRequiredToCreateOrUpdatePolicyGroup - { - get - { - return ResourceManager.GetString("VpnServerConfigurationRequiredToCreateOrUpdatePolicyGroup", resourceCulture); - } - } - + /// /// Looks up a localized string similar to A valid VpnGateway reference is required to create a VpnNatRule. /// @@ -1831,7 +1832,16 @@ internal static string VpnServerConfigurationNotFound { return ResourceManager.GetString("VpnServerConfigurationNotFound", resourceCulture); } } - + + /// + /// Looks up a localized string similar to The VpnServerConfigurationPolicyGroup could not be found.. + /// + internal static string VpnServerConfigurationPolicyGroupNotFound { + get { + return ResourceManager.GetString("VpnServerConfigurationPolicyGroupNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to A valid VpnServerConfiguration is required to create a P2SVpnGateway. /// @@ -1841,6 +1851,15 @@ internal static string VpnServerConfigurationRequiredForP2SVpnGateway { } } + /// + /// Looks up a localized string similar to A valid VpnServerConfiguration reference is required to create or update a PolicyGroup.. + /// + internal static string VpnServerConfigurationRequiredToCreateOrUpdatePolicyGroup { + get { + return ResourceManager.GetString("VpnServerConfigurationRequiredToCreateOrUpdatePolicyGroup", resourceCulture); + } + } + /// /// Looks up a localized string similar to A valid VpnSiteLink attached to a VpnSite is required to create a VpnSiteLinkConnection. /// diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx index b4cb10471218..0b247d672652 100644 --- a/src/Network/Network/Properties/Resources.resx +++ b/src/Network/Network/Properties/Resources.resx @@ -296,7 +296,7 @@ The parent VpnServerConfiguration for this PolicyGroup cannot be found. - + The parent ExpressRouteGateway for this connection cannot be found. @@ -368,7 +368,7 @@ Creating child resource with ResourceGroupName {0}, ParentResourceName {1} ResourceName {2}. - + A resource with the same name {0} and same type already exists in ResourceGroup {1}. If you wish to modify this resource please use the Update operation instead. @@ -735,4 +735,13 @@ The VirtualNetworkGatewayNatRule could not be found + + Removing this Routing Intent resource will remove all routing policies present in this and may affect the routing in your VirtualHub + + + The routing intent resource could not be found + + + Only one child allowed. A resource with name {0} and same type already exists in ResourceGroup {1}, ParentResource {2}. If you wish to modify this resource please use the Update operation instead. + \ No newline at end of file diff --git a/src/Network/Network/help/Add-AzRoutingPolicy.md b/src/Network/Network/help/Add-AzRoutingPolicy.md new file mode 100644 index 000000000000..17e2d5f46ac1 --- /dev/null +++ b/src/Network/Network/help/Add-AzRoutingPolicy.md @@ -0,0 +1,221 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/add-azroutingpolicy +schema: 2.0.0 +--- + +# Add-AzRoutingPolicy + +## SYNOPSIS +Add a Routing Policy to the Routing Intent object. + +## SYNTAX + +### (Default) +``` +Add-AzRoutingPolicy -RoutingIntent -Name -Destination -NextHop + [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Add-AzRoutingPolicy** cmdlet adds a RoutingPolicy to a RoutingIntent resource. This will only return an updated in-memory routing intent resource. Please use the [Set-AzRoutingIntent](./Set-AzRoutingIntent.md) cmdlet to update the actual resource and ensure that the policies take effect. + +## EXAMPLES + +### Example 1 +```powershell +$rgName = "testRg" +$firewallName = "testFirewall" +$firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName +$routingIntent = Get-AzRoutingIntent -Name "routingIntent1" -HubName "hub1" -ResourceGroupName $rgName +Add-AzRoutingPolicy -Name "PublicTraffic" -RoutingIntent $routingIntent -Destination @("Internet") -NextHop $firewall.Id +Set-AzRoutingIntent -InputObject $routingIntent +``` +```output +ProvisioningState : Succeeded +RoutingPolicies : {PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : routingIntent1 +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/hub1/routingIntent/routingIntent1 + +``` +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Force +Do not ask for confirmation if you want to overwrite a resource + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the routing policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextHop +Id of the next hop resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Destination +The list of destinations. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: ResourceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RoutingIntent +The routing intent resource to which this rouing policy has to be added. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSRoutingIntent +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.String + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) \ No newline at end of file diff --git a/src/Network/Network/help/Get-AzRoutingIntent.md b/src/Network/Network/help/Get-AzRoutingIntent.md new file mode 100644 index 000000000000..3b4ecf6a56fa --- /dev/null +++ b/src/Network/Network/help/Get-AzRoutingIntent.md @@ -0,0 +1,288 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/get-azroutingintent +schema: 2.0.0 +--- + +# Get-AzRoutingIntent + +## SYNOPSIS +Retrieves a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByRoutingIntentName (Default) +```powershell +Get-AzRoutingIntent -ResourceGroupName -ParentResourceName -Name [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +```powershell +Get-AzRoutingIntent -Name -VirtualHub [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByRoutingIntentResourceId +```powershell +Get-AzRoutingIntent -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Gets the specified routing intent that is associated with the specified virtual hub. + +## EXAMPLES + +### Example 1 + +```powershell +New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +$virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +$virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +$fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +$hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + +New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +$firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +$policy1 = New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +$policy2 = New-AzRoutingPolicy -Name "PublicTraffic" -Destination @("Internet") -NextHop $firewall.Id + +New-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy1, $policy2) +Get-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" +``` + +```output +ProvisioningState : Succeeded +RoutingPolicies : {PrivateTraffic, PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PrivateTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "PrivateTraffic" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + }, + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : testRoutingIntent +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/routingIntent/testRoutingIntent + +``` + +This command gets the routing intent of the virtual hub. + +### Example 2 + +```powershell +$rgName = "testRg" +$virtualHubName = "testHub" +Get-AzRoutingIntent -Name $riName -VirtualHub $virtualHub +``` + +```output +ProvisioningState : Succeeded +RoutingPolicies : {PrivateTraffic, PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PrivateTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "PrivateTraffic" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + }, + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : testRoutingIntent +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/routingIntent/testRoutingIntent + +``` + +This command get the routing intent in the specified VirtualHub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName, ByVirtualHubObject +Aliases: ResourceName, RoutingIntentName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the RoutingIntent resource to Get. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentResourceId +Aliases: RoutingIntentId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[New-AzVHubRoute](./New-AzVHubRoute.md) + +[New-AzRoutingIntent](./New-AzRoutingIntent.md) + +[Update-AzRoutingIntent](./Update-AzRoutingIntent.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) \ No newline at end of file diff --git a/src/Network/Network/help/Get-AzRoutingPolicy.md b/src/Network/Network/help/Get-AzRoutingPolicy.md new file mode 100644 index 000000000000..a3d3ccb69ffb --- /dev/null +++ b/src/Network/Network/help/Get-AzRoutingPolicy.md @@ -0,0 +1,172 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/get-azroutingpolicy +schema: 2.0.0 +--- + +# Get-AzRoutingPolicy + +## SYNOPSIS +Retrieves a routing policy of a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByRoutingIntentObject +```powershell +Get-AzRoutingPolicy -Name -RoutingIntent [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Gets the specified routing Policy that is associated with the specified routing intent resource. + +## EXAMPLES + +### Example 1 + +```powershell +New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +$virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +$virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +$fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +$hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + +New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +$firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +$policy1 = New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +New-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy1) + +$routingIntent = Get-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" +Get-AzRoutingPolicy -RoutingIntent $routingIntent -Name "PrivateTraffic" +``` + +```output +Name : PrivateTraffic +DestinationType : TrafficType +Destinations : {PrivateTraffic} +NextHopType : ResourceId +NextHop : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall + +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The policy name. + +```yaml +Type: String +Parameter Sets: ByRoutingPolicyName, ByVirtualHubObject +Aliases: ResourceName, RoutingPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RoutingIntent +The routing intent resource to which this rouing policy has to be added. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSRoutingIntent +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy + +## NOTES + +## RELATED LINKS + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzRoutingIntent.md b/src/Network/Network/help/New-AzRoutingIntent.md new file mode 100644 index 000000000000..45908449812c --- /dev/null +++ b/src/Network/Network/help/New-AzRoutingIntent.md @@ -0,0 +1,276 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/new-azroutingintent +schema: 2.0.0 +--- + +# New-AzRoutingIntent + +## SYNOPSIS +Creates a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByVirtualHubName (Default) + +```powershell +New-AzRoutingIntent -ResourceGroupName -ParentResourceName -Name -RoutingPolicy [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject + +```powershell +New-AzRoutingIntent -Name -ParentObject -RoutingPolicy [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubResourceId + +```powershell +New-AzRoutingIntent -ParentResourceId -Name -RoutingPolicy [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Creates the specified routing intent that is associated with the specified virtual hub with the provided list of routing policies. + +## EXAMPLES + +### Example 1 + +```powershell +New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +$virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +$virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +$fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +$hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + +New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +$firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +$policy1 = New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +$policy2 = New-AzRoutingPolicy -Name "PublicTraffic" -Destination @("Internet") -NextHop $firewall.Id + +New-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy1, $policy2) +``` + +```output +ProvisioningState : Succeeded +RoutingPolicies : {PrivateTraffic, PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PrivateTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "PrivateTraffic" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + }, + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : testRoutingIntent +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/routingIntent/testRoutingIntent + +``` + +This command creates a routing intent of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceName, RoutingIntentName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByVirtualHubName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByVirtualHubName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentResourceId +The resource id of the virtual hub resource. + +```yaml +Type: String +Parameter Sets: ByVirtualHubResourceId +Aliases: VirtualHubId, ParentVirtualHubId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RoutingPolicy +The list of routing policies for this rouoting intent resource. + +```yaml +Type: PSRoutingPolicy[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[Add-AzRoutingPolicy](./Add-AzRoutingPolicy.md) + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) diff --git a/src/Network/Network/help/New-AzRoutingPolicy.md b/src/Network/Network/help/New-AzRoutingPolicy.md new file mode 100644 index 000000000000..fc16a6453dac --- /dev/null +++ b/src/Network/Network/help/New-AzRoutingPolicy.md @@ -0,0 +1,197 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/new-azroutingpolicy +schema: 2.0.0 +--- + +# New-AzRoutingPolicy + +## SYNOPSIS +Returns an in-memory routing policy object. + +## SYNTAX + +### (Default) +``` +New-AzRoutingPolicy -Name -Destination -NextHop + [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzRoutingPolicy** cmdlet creates a routing policy object. This can be passed in to [Add-AzRoutingPolicy](./Add-AzRoutingPolicy.md) cmdlet to add to an existing routing intent resource or [New-AzRoutingIntent](./New-AzRoutingIntent.md) cmdlet to create a new routing intent resource. + +## EXAMPLES + +### Example 1 +```powershell +$rgName = "testRg" +$firewallName = "testFirewall" +$firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName +New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +``` + +```output +Name : PrivateTraffic +DestinationType : TrafficType +Destinations : {PrivateTraffic} +NextHopType : ResourceId +NextHop : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall + +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Force +Do not ask for confirmation if you want to overwrite a resource + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the routing policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextHop +Id of the next hop resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Destination +The list of destinations. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: ResourceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.String + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy + +## NOTES + +## RELATED LINKS + +[Add-AzRoutingPolicy](./Add-AzRoutingPolicy.md) + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingIntent](./New-AzRoutingIntent.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) \ No newline at end of file diff --git a/src/Network/Network/help/Remove-AzRoutingIntent.md b/src/Network/Network/help/Remove-AzRoutingIntent.md new file mode 100644 index 000000000000..199d501382dc --- /dev/null +++ b/src/Network/Network/help/Remove-AzRoutingIntent.md @@ -0,0 +1,254 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/remove-azroutingintent +schema: 2.0.0 +--- + +# Remove-AzRoutingIntent + +## SYNOPSIS +Delete a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByRoutingIntentName (Default) +```powershell +Remove-AzRoutingIntent -ResourceGroupName -ParentResourceName -Name [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +```powershell +Remove-AzRoutingIntent -Name -VirtualHub [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByRoutingIntentObject +```powershell +Remove-AzRoutingIntent [-InputObject ] [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByRoutingIntentResourceId +```powershell +Remove-AzRoutingIntent -ResourceId [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Deletes the specified routing intent that is associated with the specified virtual hub. + +## EXAMPLES + +### Example 1 +```powershell +$testRoutingIntent = Get-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" +Remove-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" +``` + +This command deletes the routing intent of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Do not ask for confirmation if you want to overwrite a resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The RoutingIntent resource to remove. + +```yaml +Type: PSRoutingIntent +Parameter Sets: ByRoutingIntentObject +Aliases: RoutingIntent + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName, ByVirtualHubObject +Aliases: ResourceName, RoutingIntentName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item on which this operation is being performed. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the RoutingIntent resource to remove. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentResourceId +Aliases: RoutingIntentId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +### System.String + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[New-AzRoutingIntent](./New-AzRoutingIntent.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) \ No newline at end of file diff --git a/src/Network/Network/help/Remove-AzRoutingPolicy.md b/src/Network/Network/help/Remove-AzRoutingPolicy.md new file mode 100644 index 000000000000..5c44846660cf --- /dev/null +++ b/src/Network/Network/help/Remove-AzRoutingPolicy.md @@ -0,0 +1,194 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/remove-azroutingpolicy +schema: 2.0.0 +--- + +# Remove-AzRoutingPolicy + +## SYNOPSIS +Removes the specified routing policy from a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByRoutingIntentObject +```powershell +Remove-AzRoutingPolicy -Name -RoutingIntent [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Removes the specified routing Policy that is associated with the specified routing intent object and returns an in-memory routing intent object which can be piped to [Set-AzRoutingIntent](./Set-AzRoutingIntent.md) to update the actual routing intent resource. + +## EXAMPLES + +### Example 1 + +```powershell +New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +$virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +$virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +$fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +$hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + +New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +$firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +$policy1 = New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +$policy2 = New-AzRoutingPolicy -Name "PublicTraffic" -Destination @("Internet") -NextHop $firewall.Id + +New-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy1, $policy2) +$routingIntent = Get-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" + +Remove-AzRoutingPolicy -Name "PrivateTraffic" -RoutingIntent $routingIntent +Set-AzRoutingIntent -InputObject $routingIntent +``` + +```output +ProvisioningState : Succeeded +RoutingPolicies : {PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : routingIntent1 +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/hub1/routingIntent/routingIntent1 + +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The policy name. + +```yaml +Type: String +Parameter Sets: ByRoutingPolicyName, ByVirtualHubObject +Aliases: ResourceName, RoutingPolicyName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RoutingIntent +The routing intent object from which this rouing policy has to be removed. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSRoutingIntent +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[Add-AzRoutingPolicy](./Add-AzRoutingPolicy.md) + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingIntent](./New-AzRoutingIntent.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) \ No newline at end of file diff --git a/src/Network/Network/help/Set-AzRoutingIntent.md b/src/Network/Network/help/Set-AzRoutingIntent.md new file mode 100644 index 000000000000..41bdc1664b9b --- /dev/null +++ b/src/Network/Network/help/Set-AzRoutingIntent.md @@ -0,0 +1,284 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/set-azroutingintent +schema: 2.0.0 +--- + +# Set-AzRoutingIntent + +## SYNOPSIS +Updates a routing intent resource associated with a VirtualHub. + +## SYNTAX + +### ByRoutingIntentName (Default) +```powershell +Set-AzRoutingIntent -ResourceGroupName -ParentResourceName -Name [-RoutingPolicy ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +```powershell +Set-AzRoutingIntent -Name -ParentObject [-RoutingPolicy ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByRoutingIntentObject +```powershell +Set-AzRoutingIntent -InputObject [-RoutingPolicy ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByRoutingIntentResourceId +```powershell +Set-AzRoutingIntent -ResourceId [-RoutingPolicy ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Updates the specified routing intent that is associated with the specified virtual hub. If a list of routing policies is provided, these will overwrite the existing policies on the current routing intent resource. + +## EXAMPLES + +### Example 1 +```powershell +New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +$virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +$virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +$fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +$hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + +New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +$firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +$policy1 = New-AzRoutingPolicy -Name "PrivateTraffic" -Destination @("PrivateTraffic") -NextHop $firewall.Id +New-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy1) + +$policy2 = New-AzRoutingPolicy -Name "PublicTraffic" -Destination @("Internet") -NextHop $firewall.Id +Set-AzRoutingIntent -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRoutingIntent" -RoutingPolicy @($policy2) +``` + +```output +ProvisioningState : Succeeded +RoutingPolicies : {PublicTraffic} +RoutingPoliciesText : [ + { + "Name": "PublicTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "Internet" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : testRoutingIntent +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/routingIntent/testRoutingIntent + +``` + +This command deletes the hub RoutingPolicy table of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The RoutingIntent resource to Set. + +```yaml +Type: PSRoutingIntent +Parameter Sets: ByRoutingIntentObject +Aliases: RoutingIntent, RoutingPolicyTable + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName, ByVirtualHubObject +Aliases: ResourceName, RoutingIntentName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the RoutingIntent resource to Set. + +```yaml +Type: String +Parameter Sets: ByRoutingIntentResourceId +Aliases: RoutingIntentId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RoutingPolicy +The list of RoutingPolicies to update in this routing intent reesource. + +```yaml +Type: PSRoutingPolicy[] +Parameter Sets: (All) +Aliases: ResourceName, RoutingIntentName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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 + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +### Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[Add-AzRoutingPolicy](./Add-AzRoutingPolicy.md) + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) \ No newline at end of file diff --git a/src/Network/Network/help/Set-AzRoutingPolicy.md b/src/Network/Network/help/Set-AzRoutingPolicy.md new file mode 100644 index 000000000000..aa1c5dd41d20 --- /dev/null +++ b/src/Network/Network/help/Set-AzRoutingPolicy.md @@ -0,0 +1,220 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/powershell/module/az.network/set-azroutingpolicy +schema: 2.0.0 +--- + +# Set-AzRoutingPolicy + +## SYNOPSIS +Updates the destinations or nexthop for the specified Routing Policy of a Routing Intent object. + +## SYNTAX + +### (Default) +``` +Set-AzRoutingPolicy -RoutingIntent -Name [-Destination ] [-NextHop ] + [-Force] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzRoutingPolicy** cmdlet updates a RoutingPolicy of a RoutingIntent resource. This will only return an updated in-memory routing intent resource. Please use the [Set-AzRoutingIntent](./Set-AzRoutingIntent.md) cmdlet to update the actual resource and ensure that the policies take effect. + +## EXAMPLES + +### Example 1 +```powershell +$rgName = "testRg" +$firewallName = "testFirewall" +$firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName +$routingIntent = Get-AzRoutingIntent -Name "routingIntent1" -HubName "hub1" -ResourceGroupName $rgName +Set-AzRoutingPolicy -Name "PrivateTraffic" -RoutingIntent $routingIntent -Destination @("PrivateTraffic") -NextHop $firewall.Id +``` +```output +ProvisioningState : Succeeded +RoutingPolicies : {PrivateTraffic} +RoutingPoliciesText : [ + { + "Name": "PrivateTraffic", + "DestinationType": "TrafficType", + "Destinations": [ + "PrivateTraffic" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +Name : routingIntent1 +Etag : W/"etag" +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/hub1/routingIntent/routingIntent1 + +``` +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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 +``` + +### -Force +Do not ask for confirmation if you want to overwrite a resource + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the routing policy + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NextHop +Id of the next hop resource. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Destination +The list of destinations. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: ResourceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RoutingIntent +The routing intent resource to which this rouing policy has to be added. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSRoutingIntent +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.String + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingIntent + +## NOTES + +## RELATED LINKS + +[Get-AzRoutingIntent](./Get-AzRoutingIntent.md) + +[Get-AzRoutingPolicy](./Get-AzRoutingPolicy.md) + +[New-AzRoutingPolicy](./New-AzRoutingPolicy.md) + +[Remove-AzRoutingIntent](./Remove-AzRoutingIntent.md) + +[Remove-AzRoutingPolicy](./Remove-AzRoutingPolicy.md) + +[Set-AzRoutingIntent](./Set-AzRoutingIntent.md) + +[Set-AzRoutingPolicy](./Set-AzRoutingPolicy.md) \ No newline at end of file