From c51040e251f90546af5758b44b91330435142707 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 8 Jun 2020 20:03:12 -0700 Subject: [PATCH 01/13] add routing state and expose reset-hubrouter --- src/Network/Network/ChangeLog.md | 2 + .../VirtualHub/ResetHubRouterCommand.cs | 122 ++++++++++++++++++ .../Network/Models/Cortex/PSVirtualHub.cs | 3 + 3 files changed, 127 insertions(+) create mode 100644 src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 8b404145cd60..bc6735ec1d5f 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -53,6 +53,8 @@ * Updated below commands for feature: Custom dns servers set/remove on VirtualWan P2SVpnGateway. - Updated New-AzP2sVpnGateway: Added optional parameter -CustomDnsServer for customers to specify their dns servers to set on P2SVpnGateway, which can be used by Point to site clients. - Updated Update-AzP2sVpnGateway: Added optional parameter -CustomDnsServer for customers to specify their dns servers to set on P2SVpnGateway, which can be used by Point to site clients. +* Added new cmdlet to support resetting the routing state of a VirtualHub resource: + - Reset-HubRouter ## Version 2.5.0 * Updated cmdlets to enable connection on private IP for Virtual Network Gateway. diff --git a/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs new file mode 100644 index 000000000000..904d2b25bfe8 --- /dev/null +++ b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs @@ -0,0 +1,122 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Automation; + using System.Text; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + using MNM = Microsoft.Azure.Management.Network.Models; + + [Cmdlet(VerbsCommon.Reset, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HubRouter", + DefaultParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + SupportsShouldProcess = true), + OutputType(typeof(PSVirtualHub))] + public class ResetHubRouterCommand : VirtualHubBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("ResourceName", "VirtualHubName", "HubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The virtual hub name.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Alias("VirtualHubId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubResourceId, + HelpMessage = "The resource id of the Virtual hub.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Alias("VirtualHub")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The Virtual hub object.")] + [ValidateNotNullOrEmpty] + public PSVirtualHub InputObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + PSVirtualHub virtualHub = null; + + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + var inputVirtualHub = this.InputObject; + this.ResourceGroupName = inputVirtualHub.ResourceGroupName; + this.Name = inputVirtualHub.Name; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(ResourceId); + this.Name = parsedResourceId.ResourceName; + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + } + } + + // always do an explicit Get and use this object to trigger a Put if needed. + virtualHub = this.GetVirtualHub(this.ResourceGroupName, this.Name); + if (virtualHub == null) + { + throw new PSArgumentException(Properties.Resources.VirtualHubToUpdateNotFound); + } + + if (string.Equals(virtualHub.RoutingState, MNM.RoutingState.Provisioned.ToString(), StringComparison.InvariantCultureIgnoreCase) + { + WriteVerbose($"The virtual hub routing state is already Provisioned. Nothing to do."); + WriteObject(virtualHub); + return; + } + + // trigger the Put on the VirtualHub + ConfirmAction( + Properties.Resources.SettingResourceMessage, + this.Name, + () => + { + WriteVerbose(String.Format(Properties.Resources.UpdatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + WriteObject(this.CreateOrUpdateVirtualHub( + this.ResourceGroupName, + this.Name, + virtualHub, + null)); + }); + } + } +} diff --git a/src/Network/Network/Models/Cortex/PSVirtualHub.cs b/src/Network/Network/Models/Cortex/PSVirtualHub.cs index 8baf4378fda7..349f323ed716 100644 --- a/src/Network/Network/Models/Cortex/PSVirtualHub.cs +++ b/src/Network/Network/Models/Cortex/PSVirtualHub.cs @@ -46,5 +46,8 @@ public class PSVirtualHub : PSTopLevelResource [Ps1Xml(Label = "Sku", Target = ViewControl.Table)] public string Sku { get; set; } + + [Ps1Xml(Label = "RoutingState", Target = ViewControl.Table)] + public string RoutingState { get; set; } } } \ No newline at end of file From 535baf9481d671c8292bb940bea10790ca8604db Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 8 Jun 2020 20:16:24 -0700 Subject: [PATCH 02/13] update help --- .../VirtualHub/ResetHubRouterCommand.cs | 12 +- src/Network/Network/help/Reset-AzHubRouter.md | 245 ++++++++++++++++++ src/Network/Network/help/Reset-HubRouter.md | 225 ++++++++++++++++ 3 files changed, 476 insertions(+), 6 deletions(-) create mode 100644 src/Network/Network/help/Reset-AzHubRouter.md create mode 100644 src/Network/Network/help/Reset-HubRouter.md diff --git a/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs index 904d2b25bfe8..b79fc1c4dcbc 100644 --- a/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs +++ b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs @@ -97,12 +97,12 @@ public override void Execute() throw new PSArgumentException(Properties.Resources.VirtualHubToUpdateNotFound); } - if (string.Equals(virtualHub.RoutingState, MNM.RoutingState.Provisioned.ToString(), StringComparison.InvariantCultureIgnoreCase) - { - WriteVerbose($"The virtual hub routing state is already Provisioned. Nothing to do."); - WriteObject(virtualHub); - return; - } + //if (string.Equals(virtualHub.RoutingState, MNM.RoutingState.Provisioned.ToString(), StringComparison.InvariantCultureIgnoreCase)) + //{ + // WriteVerbose($"The virtual hub routing state is already Provisioned. Nothing to do."); + // WriteObject(virtualHub); + // return; + //} // trigger the Put on the VirtualHub ConfirmAction( diff --git a/src/Network/Network/help/Reset-AzHubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md new file mode 100644 index 000000000000..2682b93133cc --- /dev/null +++ b/src/Network/Network/help/Reset-AzHubRouter.md @@ -0,0 +1,245 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/reset-hubrouter +schema: 2.0.0 +--- + +# Reset-HubRouter + +## SYNOPSIS +Resets the RoutingState of an Azure VirtualHub resource. + +## SYNTAX + +### ByVirtualHubName (Default) +``` +Reset-HubRouter -ResourceGroupName -Name [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubResourceId +``` +Reset-HubRouter -ResourceId [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +Reset-HubRouter -InputObject [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Resets the Routing State of an existing Azure VirtualHub resource only if the Routing State of the virtual hub is not Provisioned. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Reset-HubRouter -ResourceGroupName "testRG" -Name "westushub" +``` + +Reset the routing state of the virtual hub using its ResourceGroupName and ResourceName. + +### Example 2 + +```powershell +PS C:\> Reset-HubRouter -ResourceId "/subscriptions/testSub/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub" +``` + +Reset the routing state of the virtual hub using its ResourceId. + +### Example 3 + +```powershell +PS C:\> Reset-HubRouter -InputObject $virtualHub +``` + +Reset the routing state of the virtual hub using an input object. The input object is of type PSVirtualHub. + +### Example 4 + +```powershell +PS C:\> Get-AzVirtualHub -ResourceGroupName "testRG" -Name "westushub" | Reset-HubRouter +``` + +An existing virtual hub object can be retrieved and then passed as input object to Reset-HubRouter. + +## 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 +``` + +### -InputObject +The Virtual hub object to be modified. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubName +Aliases: ResourceName, VirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item with which you are working. +By default, this cmdlet does not generate any output. + +```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 +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the Virtual hub to be modified. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubResourceId +Aliases: VirtualHubId + +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.PSVirtualHub + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + +[Get-AzVirtualHub](./Get-AzVirtualHub.md) + +[New-AzVirtualHub](./New-AzVirtualHub.md) + +[Update-AzVirtualHub](./Update-AzVirtualHub.md) diff --git a/src/Network/Network/help/Reset-HubRouter.md b/src/Network/Network/help/Reset-HubRouter.md new file mode 100644 index 000000000000..dd501b1e25b1 --- /dev/null +++ b/src/Network/Network/help/Reset-HubRouter.md @@ -0,0 +1,225 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/reset-hubrouter +schema: 2.0.0 +--- + +# Reset-HubRouter + +## SYNOPSIS +Resets the RoutingState of an Azure VirtualHub resource. + +## SYNTAX + +### ByVirtualHubName (Default) +``` +Reset-HubRouter -ResourceGroupName -Name [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubResourceId +``` +Reset-HubRouter -ResourceId [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +Reset-HubRouter -InputObject [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Resets the Routing State of an existing Azure VirtualHub resource only if the Routing State of the virtual hub is not Provisioned. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> Reset-HubRouter -ResourceGroupName "testRG" -Name "westushub" +``` + +Reset the routing state of the virtual hub using its ResourceGroupName and ResourceName. + +### Example 2 + +```powershell +PS C:\> Reset-HubRouter -ResourceId "/subscriptions/testSub/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub" +``` + +Reset the routing state of the virtual hub using its ResourceId. + +### Example 3 + +```powershell +PS C:\> Reset-HubRouter -InputObject $virtualHub +``` + +Reset the routing state of the virtual hub using an input object. The input object is of type PSVirtualHub. + +### Example 4 + +```powershell +PS C:\> Get-AzVirtualHub -ResourceGroupName "testRG" -Name "westushub" | Reset-HubRouter +``` + +An existing virtual hub object can be retrieved and then passed as input object to Reset-HubRouter. + +## 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 +``` + +### -InputObject +The Virtual hub object to be modified. + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubName +Aliases: ResourceName, VirtualHubName, HubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the Virtual hub to be modified. + +```yaml +Type: System.String +Parameter Sets: ByVirtualHubResourceId +Aliases: VirtualHubId + +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.PSVirtualHub + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +## NOTES + +## RELATED LINKS + +[Get-AzVirtualHub](./Get-AzVirtualHub.md) From c4ef8cdd18e5ad9fa9afba8420a548495dd4f495 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 8 Jun 2020 20:44:54 -0700 Subject: [PATCH 03/13] updated --- .../VirtualHub/ResetHubRouterCommand.cs | 12 +- src/Network/Network/help/Reset-AzHubRouter.md | 245 ------------------ 2 files changed, 6 insertions(+), 251 deletions(-) delete mode 100644 src/Network/Network/help/Reset-AzHubRouter.md diff --git a/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs index b79fc1c4dcbc..aff2bf5b8a42 100644 --- a/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs +++ b/src/Network/Network/Cortex/VirtualHub/ResetHubRouterCommand.cs @@ -97,12 +97,12 @@ public override void Execute() throw new PSArgumentException(Properties.Resources.VirtualHubToUpdateNotFound); } - //if (string.Equals(virtualHub.RoutingState, MNM.RoutingState.Provisioned.ToString(), StringComparison.InvariantCultureIgnoreCase)) - //{ - // WriteVerbose($"The virtual hub routing state is already Provisioned. Nothing to do."); - // WriteObject(virtualHub); - // return; - //} + if (string.Equals(virtualHub.RoutingState, MNM.RoutingState.Provisioned.ToString(), StringComparison.InvariantCultureIgnoreCase)) + { + WriteVerbose($"The virtual hub routing state is already Provisioned. Nothing to do."); + WriteObject(virtualHub); + return; + } // trigger the Put on the VirtualHub ConfirmAction( diff --git a/src/Network/Network/help/Reset-AzHubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md deleted file mode 100644 index 2682b93133cc..000000000000 --- a/src/Network/Network/help/Reset-AzHubRouter.md +++ /dev/null @@ -1,245 +0,0 @@ ---- -external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml -Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/reset-hubrouter -schema: 2.0.0 ---- - -# Reset-HubRouter - -## SYNOPSIS -Resets the RoutingState of an Azure VirtualHub resource. - -## SYNTAX - -### ByVirtualHubName (Default) -``` -Reset-HubRouter -ResourceGroupName -Name [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### ByVirtualHubResourceId -``` -Reset-HubRouter -ResourceId [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -### ByVirtualHubObject -``` -Reset-HubRouter -InputObject [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] -``` - -## DESCRIPTION -Resets the Routing State of an existing Azure VirtualHub resource only if the Routing State of the virtual hub is not Provisioned. - -## EXAMPLES - -### Example 1 - -```powershell -PS C:\> Reset-HubRouter -ResourceGroupName "testRG" -Name "westushub" -``` - -Reset the routing state of the virtual hub using its ResourceGroupName and ResourceName. - -### Example 2 - -```powershell -PS C:\> Reset-HubRouter -ResourceId "/subscriptions/testSub/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub" -``` - -Reset the routing state of the virtual hub using its ResourceId. - -### Example 3 - -```powershell -PS C:\> Reset-HubRouter -InputObject $virtualHub -``` - -Reset the routing state of the virtual hub using an input object. The input object is of type PSVirtualHub. - -### Example 4 - -```powershell -PS C:\> Get-AzVirtualHub -ResourceGroupName "testRG" -Name "westushub" | Reset-HubRouter -``` - -An existing virtual hub object can be retrieved and then passed as input object to Reset-HubRouter. - -## 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 -``` - -### -InputObject -The Virtual hub object to be modified. - -```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSVirtualHub -Parameter Sets: ByVirtualHubObject -Aliases: VirtualHub - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The resource name. - -```yaml -Type: System.String -Parameter Sets: ByVirtualHubName -Aliases: ResourceName, VirtualHubName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PassThru -Returns an object representing the item with which you are working. -By default, this cmdlet does not generate any output. - -```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 -``` - -### -ResourceGroupName -The resource group name. - -```yaml -Type: System.String -Parameter Sets: ByVirtualHubName -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceId -The resource id of the Virtual hub to be modified. - -```yaml -Type: System.String -Parameter Sets: ByVirtualHubResourceId -Aliases: VirtualHubId - -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.PSVirtualHub - -## OUTPUTS - -### System.Boolean - -## NOTES - -## RELATED LINKS - -[Get-AzVirtualHub](./Get-AzVirtualHub.md) - -[New-AzVirtualHub](./New-AzVirtualHub.md) - -[Update-AzVirtualHub](./Update-AzVirtualHub.md) From e4cb83d1bed50fc97be8b0bb91018fc26755e89b Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Tue, 9 Jun 2020 16:39:00 +0800 Subject: [PATCH 04/13] Update ChangeLog.md --- src/Network/Network/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index bc6735ec1d5f..7c54bee31c71 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -54,7 +54,7 @@ - Updated New-AzP2sVpnGateway: Added optional parameter -CustomDnsServer for customers to specify their dns servers to set on P2SVpnGateway, which can be used by Point to site clients. - Updated Update-AzP2sVpnGateway: Added optional parameter -CustomDnsServer for customers to specify their dns servers to set on P2SVpnGateway, which can be used by Point to site clients. * Added new cmdlet to support resetting the routing state of a VirtualHub resource: - - Reset-HubRouter + - Reset-AzHubRouter ## Version 2.5.0 * Updated cmdlets to enable connection on private IP for Virtual Network Gateway. From f529e3919960c1597f0f13926709fefcb7669554 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Tue, 9 Jun 2020 10:49:42 -0700 Subject: [PATCH 05/13] update help file name --- .../Network/help/{Reset-HubRouter.md => Reset-AzHubRouter.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/Network/Network/help/{Reset-HubRouter.md => Reset-AzHubRouter.md} (99%) diff --git a/src/Network/Network/help/Reset-HubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md similarity index 99% rename from src/Network/Network/help/Reset-HubRouter.md rename to src/Network/Network/help/Reset-AzHubRouter.md index dd501b1e25b1..2f529de8716b 100644 --- a/src/Network/Network/help/Reset-HubRouter.md +++ b/src/Network/Network/help/Reset-AzHubRouter.md @@ -5,7 +5,7 @@ online version: https://docs.microsoft.com/en-us/powershell/module/az.network/re schema: 2.0.0 --- -# Reset-HubRouter +# Reset-AzHubRouter ## SYNOPSIS Resets the RoutingState of an Azure VirtualHub resource. From 2cb2cfcc2684072d083e3d143de045ce2c54df36 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Tue, 9 Jun 2020 10:53:30 -0700 Subject: [PATCH 06/13] export cmdlet --- src/Network/Network/Az.Network.psd1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index a2d09aba2099..9f4123dad1e2 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -480,7 +480,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Remove-AzIpAllocation', 'Set-AzIpAllocation', 'New-AzSecurityPartnerProvider', 'Remove-AzSecurityPartnerProvider', - 'Get-AzSecurityPartnerProvider', 'Set-AzSecurityPartnerProvider' + 'Get-AzSecurityPartnerProvider', 'Set-AzSecurityPartnerProvider', + 'Reset-AzHubRouter' # Variables to export from this module # VariablesToExport = @() From e85e6140da3b5f7ee8289461adec1adfef1494f3 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Tue, 9 Jun 2020 10:58:41 -0700 Subject: [PATCH 07/13] update test --- src/Network/Network.Test/ScenarioTests/CortexTests.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index e273f443bc61..5df1fdaad85c 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -100,7 +100,10 @@ function Test-CortexCRUD Assert-AreEqual $rgName $virtualHub.ResourceGroupName Assert-AreEqual $virtualHubName $virtualHub.Name $routes = $virtualHub.RouteTable.Routes - Assert-AreEqual 2 @($routes).Count + Assert-AreEqual 2 @($routes). + + # Reset routing state + Reset-AzHubRouter -ResourceGroupName $rgName -Name $virtualHubName # Create the VpnSite $vpnSiteAddressSpaces = New-Object string[] 1 From d085cd5b53ef9dc76039e60df2f3d4d625788bff Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Wed, 10 Jun 2020 09:42:27 -0700 Subject: [PATCH 08/13] fix --- src/Network/Network.Test/ScenarioTests/CortexTests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index 63a074dbbd06..f4ee3570af25 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -100,7 +100,7 @@ function Test-CortexCRUD Assert-AreEqual $rgName $virtualHub.ResourceGroupName Assert-AreEqual $virtualHubName $virtualHub.Name $routes = $virtualHub.RouteTable.Routes - Assert-AreEqual 2 @($routes). + Assert-AreEqual 2 @($routes).Count # Reset routing state Reset-AzHubRouter -ResourceGroupName $rgName -Name $virtualHubName From b7197c228d68de446c269214229cf4bde91e4617 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Thu, 11 Jun 2020 10:27:10 -0700 Subject: [PATCH 09/13] update md file --- src/Network/Network/help/Reset-AzHubRouter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Network/help/Reset-AzHubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md index 2f529de8716b..9c36148c7186 100644 --- a/src/Network/Network/help/Reset-AzHubRouter.md +++ b/src/Network/Network/help/Reset-AzHubRouter.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://docs.microsoft.com/en-us/powershell/module/az.network/reset-hubrouter +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/reset-azhubrouter schema: 2.0.0 --- From 1b8c56947b49781867e7d15c7325301798f1b6d4 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Thu, 11 Jun 2020 16:02:11 -0700 Subject: [PATCH 10/13] update tests --- src/Network/Network.Test/ScenarioTests/CortexTests.cs | 2 +- src/Network/Network.Test/ScenarioTests/CortexTests.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs index 1d0308234883..8652fca1474c 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs @@ -27,7 +27,7 @@ public CortexTests(ITestOutputHelper output) { } - [Fact(Skip = "Authentication failed for auxiliary token: The '1' auxiliary tokens contains duplicates which are from the same tenant.")] + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.brooklynft)] public void TestCortexCRUD() diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index f4ee3570af25..7758575df2c6 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -20,7 +20,7 @@ function Test-CortexCRUD { # Setup $rgName = Get-ResourceName - $rglocation = Get-ProviderLocation ResourceManagement "East US" + $rglocation = Get-ProviderLocation ResourceManagement "West Central US" $virtualWanName = Get-ResourceName $virtualHubName = Get-ResourceName From 192c5ca93d482ea0600e5f4ea73b46c3e88b7804 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Thu, 11 Jun 2020 19:45:46 -0700 Subject: [PATCH 11/13] updated help --- src/Network/Network/help/Reset-AzHubRouter.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Network/Network/help/Reset-AzHubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md index 9c36148c7186..521208b357e5 100644 --- a/src/Network/Network/help/Reset-AzHubRouter.md +++ b/src/Network/Network/help/Reset-AzHubRouter.md @@ -38,7 +38,7 @@ Resets the Routing State of an existing Azure VirtualHub resource only if the Ro ### Example 1 ```powershell -PS C:\> Reset-HubRouter -ResourceGroupName "testRG" -Name "westushub" +PS C:\> Reset-AzHubRouter -ResourceGroupName "testRG" -Name "westushub" ``` Reset the routing state of the virtual hub using its ResourceGroupName and ResourceName. @@ -46,7 +46,7 @@ Reset the routing state of the virtual hub using its ResourceGroupName and Resou ### Example 2 ```powershell -PS C:\> Reset-HubRouter -ResourceId "/subscriptions/testSub/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub" +PS C:\> Reset-AzHubRouter -ResourceId "/subscriptions/testSub/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub" ``` Reset the routing state of the virtual hub using its ResourceId. @@ -54,7 +54,7 @@ Reset the routing state of the virtual hub using its ResourceId. ### Example 3 ```powershell -PS C:\> Reset-HubRouter -InputObject $virtualHub +PS C:\> Reset-AzHubRouter -InputObject $virtualHub ``` Reset the routing state of the virtual hub using an input object. The input object is of type PSVirtualHub. @@ -62,10 +62,10 @@ Reset the routing state of the virtual hub using an input object. The input obje ### Example 4 ```powershell -PS C:\> Get-AzVirtualHub -ResourceGroupName "testRG" -Name "westushub" | Reset-HubRouter +PS C:\> Get-AzVirtualHub -ResourceGroupName "testRG" -Name "westushub" | Reset-AzHubRouter ``` -An existing virtual hub object can be retrieved and then passed as input object to Reset-HubRouter. +An existing virtual hub object can be retrieved and then passed as input object to Reset-AzHubRouter. ## PARAMETERS From 6cc3a80b8ac7afb3172a6e517c95fa275992043e Mon Sep 17 00:00:00 2001 From: Ritvika Reddy Nagula Date: Thu, 11 Jun 2020 19:48:57 -0700 Subject: [PATCH 12/13] Update Reset-AzHubRouter.md --- src/Network/Network/help/Reset-AzHubRouter.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Network/Network/help/Reset-AzHubRouter.md b/src/Network/Network/help/Reset-AzHubRouter.md index 521208b357e5..2af34dfbf63e 100644 --- a/src/Network/Network/help/Reset-AzHubRouter.md +++ b/src/Network/Network/help/Reset-AzHubRouter.md @@ -8,30 +8,30 @@ schema: 2.0.0 # Reset-AzHubRouter ## SYNOPSIS -Resets the RoutingState of an Azure VirtualHub resource. +Resets the RoutingState of a VirtualHub resource. ## SYNTAX ### ByVirtualHubName (Default) ``` -Reset-HubRouter -ResourceGroupName -Name [-AsJob] +Reset-AzHubRouter -ResourceGroupName -Name [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubResourceId ``` -Reset-HubRouter -ResourceId [-AsJob] +Reset-AzHubRouter -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObject ``` -Reset-HubRouter -InputObject [-AsJob] +Reset-AzHubRouter -InputObject [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Resets the Routing State of an existing Azure VirtualHub resource only if the Routing State of the virtual hub is not Provisioned. +Resets the Routing State of an existing VirtualHub resource only if the Routing State of the virtual hub is not Provisioned. ## EXAMPLES From f0299c25a27ee4adfdd1f59699aa7de241abef19 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Sat, 13 Jun 2020 12:36:41 -0700 Subject: [PATCH 13/13] test recorded --- .../Network.Test/ScenarioTests/CortexTests.cs | 10 +- .../ScenarioTests/CortexTests.ps1 | 50 +- .../TestCortexVirtualHubCRUD.json | 4659 +++++++++++++++++ 3 files changed, 4714 insertions(+), 5 deletions(-) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestCortexVirtualHubCRUD.json diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs index 8652fca1474c..6167fb99084b 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs @@ -27,7 +27,7 @@ public CortexTests(ITestOutputHelper output) { } - [Fact] + [Fact(Skip = "Authentication failed for auxiliary token: The '1' auxiliary tokens contains duplicates which are from the same tenant.")] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.brooklynft)] public void TestCortexCRUD() @@ -74,5 +74,13 @@ public void TestBgpSettingsUpdateVpnGateway() { TestRunner.RunTestScript("Test-BgpUpdateVpnGateway"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.pgtm)] + public void TestCortexVirtualHubCRUD() + { + TestRunner.RunTestScript("Test-CortexVirtualHubCRUD"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index 7758575df2c6..b9f6b1a49251 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -20,7 +20,7 @@ function Test-CortexCRUD { # Setup $rgName = Get-ResourceName - $rglocation = Get-ProviderLocation ResourceManagement "West Central US" + $rglocation = Get-ProviderLocation ResourceManagement "East US" $virtualWanName = Get-ResourceName $virtualHubName = Get-ResourceName @@ -102,9 +102,6 @@ function Test-CortexCRUD $routes = $virtualHub.RouteTable.Routes Assert-AreEqual 2 @($routes).Count - # Reset routing state - Reset-AzHubRouter -ResourceGroupName $rgName -Name $virtualHubName - # Create the VpnSite $vpnSiteAddressSpaces = New-Object string[] 1 $vpnSiteAddressSpaces[0] = "192.168.2.0/24" @@ -852,4 +849,49 @@ function Test-CortexExpressRouteCRUD Clean-ResourceGroup $rgname } +} + +function Test-CortexVirtualHubCRUD +{ + # Setup + $rgName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "West Central US" + + $virtualWanName = Get-ResourceName + $virtualHubName = Get-ResourceName + + 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 + Assert-AreEqual $true $virtualWan.AllowVnetToVnetTraffic + Assert-AreEqual $true $virtualWan.AllowBranchToBranchTraffic + + # Create the Virtual Hub + $createdVirtualHub = New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan + $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName + Assert-AreEqual $rgName $virtualHub.ResourceGroupName + Assert-AreEqual $virtualHubName $virtualHub.Name + Assert-AreEqual "10.0.0.0/16" $virtualHub.AddressPrefix + + # Reset-AzHubRouter + Reset-AzHubRouter -ResourceGroupName $rgName -Name $virtualHubName + + # Delete the resources + $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 + } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestCortexVirtualHubCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestCortexVirtualHubCRUD.json new file mode 100644 index 000000000000..644279cd065e --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestCortexVirtualHubCRUD.json @@ -0,0 +1,4659 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps1192?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzMTE5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51e6e611-0c4b-4df2-a1db-1efa85c7fbd4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a6219fe0-d04c-4dab-9a23-297edb2a9340" + ], + "x-ms-correlation-request-id": [ + "a6219fe0-d04c-4dab-9a23-297edb2a9340" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192558Z:a6219fe0-d04c-4dab-9a23-297edb2a9340" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:25:57 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192\",\r\n \"name\": \"ps1192\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2345bc95-292c-4b88-8d9a-24ae525c7435" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "408e2112-f534-429a-b493-0dd70674df1a" + ], + "x-ms-correlation-request-id": [ + "408e2112-f534-429a-b493-0dd70674df1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192559Z:408e2112-f534-429a-b493-0dd70674df1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:25:59 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/ps7084' under resource group 'ps1192' 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/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\"" + ], + "x-ms-request-id": [ + "7f260959-1d73-4dbe-81d0-9d64734da5e0" + ], + "x-ms-correlation-request-id": [ + "d3eb77fe-f167-4eb9-8a82-d48fa9bf6ad0" + ], + "x-ms-arm-service-request-id": [ + "2ee49a76-02cb-4873-ae3b-e16716c330c8" + ], + "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:20200613T192612Z:d3eb77fe-f167-4eb9-8a82-d48fa9bf6ad0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:12 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7084\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\",\r\n \"etag\": \"W/\\\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\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/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8f675c2-41ac-41e4-831b-26c879afd1fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\"" + ], + "x-ms-request-id": [ + "e129dfc0-d9ba-4a29-8e61-ad77e570ff24" + ], + "x-ms-correlation-request-id": [ + "0b04239a-a6ae-427f-83de-619a5ef4e694" + ], + "x-ms-arm-service-request-id": [ + "a89c6789-2c44-4554-ada0-1c9a3d4ea161" + ], + "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:20200613T192612Z:0b04239a-a6ae-427f-83de-619a5ef4e694" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:12 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7084\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\",\r\n \"etag\": \"W/\\\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\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/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f1967c7-ce8d-4f9a-af7f-f342cc1bcc2b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\"" + ], + "x-ms-request-id": [ + "4fba2426-5f00-4333-b3bf-129ca71594d6" + ], + "x-ms-correlation-request-id": [ + "154a03e0-5d6c-4ff9-8d64-8a12f6d03a88" + ], + "x-ms-arm-service-request-id": [ + "0383b6d3-347f-45af-8331-f6e454a9c84d" + ], + "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:20200613T192613Z:154a03e0-5d6c-4ff9-8d64-8a12f6d03a88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:12 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7084\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\",\r\n \"etag\": \"W/\\\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\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/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ddfe8c-12fa-4703-a120-492107abb959" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\"" + ], + "x-ms-request-id": [ + "0c9741a6-530c-40bb-96e3-73338a9aabc5" + ], + "x-ms-correlation-request-id": [ + "b382238e-e5a5-40ba-b03e-c945814df292" + ], + "x-ms-arm-service-request-id": [ + "9cbe4ef6-efe9-43eb-a4fa-895500d8d330" + ], + "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:20200613T192613Z:b382238e-e5a5-40ba-b03e-c945814df292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:13 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7084\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\",\r\n \"etag\": \"W/\\\"2252de6a-c67c-4a5b-af91-1e70a3459cb5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\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/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true,\r\n \"type\": \"Standard\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffbbe5bf-ba9c-4188-bda9-924758a9ad51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "164" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8745a9b-c293-47fc-96d7-dad1f0741add" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e8745a9b-c293-47fc-96d7-dad1f0741add?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "32ba48f4-cc53-4188-a7bb-56f73e5b67c7" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fd5202e6-4830-46ce-ad4d-c8edb215ad3a" + ], + "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:20200613T192602Z:32ba48f4-cc53-4188-a7bb-56f73e5b67c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:02 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7084\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\",\r\n \"etag\": \"W/\\\"7ddcbd04-601c-4084-92aa-c53db4ae9560\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\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/westcentralus/operations/e8745a9b-c293-47fc-96d7-dad1f0741add?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U4NzQ1YTliLWMyOTMtNDdmYy05NmQ3LWRhZDFmMDc0MWFkZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e766bbf6-b831-413d-b295-9cead55554ab" + ], + "x-ms-correlation-request-id": [ + "9e852e72-cc6b-4ffe-9878-e52f2fa91481" + ], + "x-ms-arm-service-request-id": [ + "c8c9a81d-7db2-4605-9bce-5751f35893db" + ], + "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:20200613T192612Z:9e852e72-cc6b-4ffe-9878-e52f2fa91481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:12 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/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "664acce2-813b-4705-97a3-838038c1b073" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f7c4095c-10ef-4135-8ecf-067f0f66538a" + ], + "x-ms-correlation-request-id": [ + "f7c4095c-10ef-4135-8ecf-067f0f66538a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192613Z:f7c4095c-10ef-4135-8ecf-067f0f66538a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:12 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/ps4764' under resource group 'ps1192' 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/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0e5ab215-249b-4ee2-a510-73611c3fea41" + ], + "x-ms-correlation-request-id": [ + "d3ddd518-c7bd-4b20-b2f4-cc16739f2751" + ], + "x-ms-arm-service-request-id": [ + "5f0b4eb0-6e5b-45d4-97b2-7d9779724baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192937Z:d3ddd518-c7bd-4b20-b2f4-cc16739f2751" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:36 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"82fb37ea-6446-4ab6-8dcb-b943541ad02b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "794ea40a-0d12-4d83-b84f-155f2d08145d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c666bb94-064c-4e47-99b3-02c0d58bcc65" + ], + "x-ms-correlation-request-id": [ + "0983bf39-7df4-4554-85a9-120f2d3867bf" + ], + "x-ms-arm-service-request-id": [ + "b51a8f94-0d7e-49be-9f09-088424d6ebf0" + ], + "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:20200613T192937Z:0983bf39-7df4-4554-85a9-120f2d3867bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:36 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"82fb37ea-6446-4ab6-8dcb-b943541ad02b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72bdb409-c722-4d52-9e22-a33c7ba2e3a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "681c2522-1622-439a-a7f2-991ed51ae2a0" + ], + "x-ms-correlation-request-id": [ + "8660f096-8901-4445-b7f2-4953107bf1bf" + ], + "x-ms-arm-service-request-id": [ + "e786cc5d-88a7-4bc5-9f15-4d746cf99a39" + ], + "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:20200613T192937Z:8660f096-8901-4445-b7f2-4953107bf1bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:37 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"82fb37ea-6446-4ab6-8dcb-b943541ad02b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f1b66629-508a-40cc-b78b-7bb4334db4e0" + ], + "x-ms-correlation-request-id": [ + "2473ed58-7722-44b7-9adb-7e799bd2951c" + ], + "x-ms-arm-service-request-id": [ + "3dadb8a4-ea70-4947-b692-6bf69f34d8c6" + ], + "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:20200613T192938Z:2473ed58-7722-44b7-9adb-7e799bd2951c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:37 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"af44579e-5f8b-4e86-a245-189e0be0907e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1960937c-c38b-4468-be39-b71df50e1373" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "352" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "db309ad1-3cfd-4f11-b43c-8acc5fb70a25" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "a33740a4-f68b-498b-97bf-addf80054c41" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "6f2e7622-a3ee-4127-8c55-93cb3a5a4b8b" + ], + "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:20200613T192615Z:a33740a4-f68b-498b-97bf-addf80054c41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:15 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"91f9fd1b-d6d0-48a4-b9cc-480f9b75bab3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a7d4205-8266-4dd9-805b-6c126dcbebba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "569" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "afb9903a-0517-47da-a2c1-d3b086a23522" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/afb9903a-0517-47da-a2c1-d3b086a23522?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "010849e9-338d-42c8-8b62-ff49f967e414" + ], + "x-ms-arm-service-request-id": [ + "71f241dc-381b-4b5f-9d97-a82594529aad" + ], + "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:20200613T192938Z:010849e9-338d-42c8-8b62-ff49f967e414" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:37 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps4764\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualHubs/ps4764\",\r\n \"etag\": \"W/\\\"af44579e-5f8b-4e86-a245-189e0be0907e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c15cc2f7-24dc-45a5-a2d9-d18f9acec446" + ], + "x-ms-correlation-request-id": [ + "6953bddd-f52b-4dd3-a207-dac1997970e3" + ], + "x-ms-arm-service-request-id": [ + "4b6c191d-0263-41f6-94be-fe907826ac03" + ], + "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:20200613T192625Z:6953bddd-f52b-4dd3-a207-dac1997970e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b8e275f5-da0b-49ab-8dd3-8f74479e134a" + ], + "x-ms-correlation-request-id": [ + "b9670ef0-11ba-4175-8408-5244f2f74a0e" + ], + "x-ms-arm-service-request-id": [ + "1202ce5b-5eca-4eb9-b1a5-9fdedeed3877" + ], + "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:20200613T192635Z:b9670ef0-11ba-4175-8408-5244f2f74a0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d7500d2-f79c-49ce-aea1-8893a30d4a40" + ], + "x-ms-correlation-request-id": [ + "9bfd0e58-dfdc-4cf9-9be2-058d25b2f83b" + ], + "x-ms-arm-service-request-id": [ + "88b6a0e2-11ef-478e-8251-82962fe414e7" + ], + "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:20200613T192646Z:9bfd0e58-dfdc-4cf9-9be2-058d25b2f83b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9b174002-0707-4b3e-9793-afc90ae3ed1f" + ], + "x-ms-correlation-request-id": [ + "32e36907-d1dd-4531-8b14-0a94a557dc6e" + ], + "x-ms-arm-service-request-id": [ + "34ae1bb1-e99d-4ba9-9a9e-f80d60c534ff" + ], + "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:20200613T192656Z:32e36907-d1dd-4531-8b14-0a94a557dc6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:26:56 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "589cf9b5-f70f-4ee1-a6c4-dc91d686a800" + ], + "x-ms-correlation-request-id": [ + "e36a19a2-fae7-4322-acc9-49dc789243b6" + ], + "x-ms-arm-service-request-id": [ + "bf9b0be1-410c-4b3d-8417-256627f82199" + ], + "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:20200613T192706Z:e36a19a2-fae7-4322-acc9-49dc789243b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9aa632e-8e5a-4e75-8931-3b6d13e92263" + ], + "x-ms-correlation-request-id": [ + "8dc55e12-78ef-43e1-8995-2f4423bd0a58" + ], + "x-ms-arm-service-request-id": [ + "8e887d21-0559-425c-b766-976469b7d9f2" + ], + "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:20200613T192716Z:8dc55e12-78ef-43e1-8995-2f4423bd0a58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52262420-2105-4ad4-a135-a65de2ce3b6e" + ], + "x-ms-correlation-request-id": [ + "94fbe57c-c30a-419b-9dcf-768fc43ebecd" + ], + "x-ms-arm-service-request-id": [ + "9510bd40-6c29-4461-9d27-b8f41d67de43" + ], + "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:20200613T192726Z:94fbe57c-c30a-419b-9dcf-768fc43ebecd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0b86ce2-240e-4dc3-9f99-4ce9b4bc2e52" + ], + "x-ms-correlation-request-id": [ + "fdd8d675-9e4a-4a8c-82bb-2d32e4231ea6" + ], + "x-ms-arm-service-request-id": [ + "cfe23312-102e-4bf8-9715-7ab4fa35e9df" + ], + "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:20200613T192736Z:fdd8d675-9e4a-4a8c-82bb-2d32e4231ea6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "74aef24c-58a0-46aa-8417-a5ccb00db480" + ], + "x-ms-correlation-request-id": [ + "7884c627-b66a-4801-8c43-28ea023d078b" + ], + "x-ms-arm-service-request-id": [ + "f72dc1f1-7836-4440-b938-61cbe3b9beb1" + ], + "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:20200613T192746Z:7884c627-b66a-4801-8c43-28ea023d078b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "06ffcb79-cbc0-4766-8cdd-1e0d28570d68" + ], + "x-ms-correlation-request-id": [ + "5c9e4e77-b053-49da-a8fa-d4a3ccf624df" + ], + "x-ms-arm-service-request-id": [ + "798effd4-af0e-4532-9a21-daffb1a3bafa" + ], + "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:20200613T192756Z:5c9e4e77-b053-49da-a8fa-d4a3ccf624df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:27: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3594585-027c-4852-963b-1bd4ff2db653" + ], + "x-ms-correlation-request-id": [ + "e1a077b8-fb10-4f6b-bb38-0270fb8ffaba" + ], + "x-ms-arm-service-request-id": [ + "bd17c61e-c09c-4959-9f50-7d87f66c3fa5" + ], + "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:20200613T192806Z:e1a077b8-fb10-4f6b-bb38-0270fb8ffaba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28:05 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5cf811b4-85b9-435d-bb3b-c6f8af1f4ffb" + ], + "x-ms-correlation-request-id": [ + "c5ac284b-f401-4554-a588-8e390108bda1" + ], + "x-ms-arm-service-request-id": [ + "a64680ce-6a7b-40f4-833d-b1bcb24df4cc" + ], + "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:20200613T192816Z:c5ac284b-f401-4554-a588-8e390108bda1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "41fa833f-eb1d-4190-844d-4e5cf14ddde9" + ], + "x-ms-correlation-request-id": [ + "563c5ca5-d99c-49d6-9bba-019a57bc84cb" + ], + "x-ms-arm-service-request-id": [ + "2b1db66b-0684-44cc-a43d-58081c538ce1" + ], + "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:20200613T192826Z:563c5ca5-d99c-49d6-9bba-019a57bc84cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28:26 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "51d961a5-61d9-46e1-8df7-99159d6a02e3" + ], + "x-ms-correlation-request-id": [ + "583b86a6-1446-4071-87f5-867cd9afe5f5" + ], + "x-ms-arm-service-request-id": [ + "a0ec6266-c89d-4829-9acd-60c6e47bd6d4" + ], + "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:20200613T192836Z:583b86a6-1446-4071-87f5-867cd9afe5f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "bb95fad6-4938-4187-b052-fcd0e5bd1724" + ], + "x-ms-correlation-request-id": [ + "2a60dde1-1880-4ff1-b993-b90aa0265003" + ], + "x-ms-arm-service-request-id": [ + "43191544-85ea-461e-8ac5-df4f43f7e11e" + ], + "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:20200613T192846Z:2a60dde1-1880-4ff1-b993-b90aa0265003" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b8b053cb-34ee-48db-8ebb-cd8f8580d608" + ], + "x-ms-correlation-request-id": [ + "299801dd-6233-41dd-a615-74d8b8543ffb" + ], + "x-ms-arm-service-request-id": [ + "2f16722b-919b-4fbb-99f9-a32cbdb45284" + ], + "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:20200613T192856Z:299801dd-6233-41dd-a615-74d8b8543ffb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:28:56 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c1065a75-b506-47ad-a595-501c599a44f9" + ], + "x-ms-correlation-request-id": [ + "8c1e65eb-c015-483e-81ae-74d5cd148547" + ], + "x-ms-arm-service-request-id": [ + "c6ebad1b-4dec-44e7-a2c0-60fb0ed95e66" + ], + "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:20200613T192906Z:8c1e65eb-c015-483e-81ae-74d5cd148547" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29: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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7da7abd3-b3cc-4f27-82ea-3111d1adcfac" + ], + "x-ms-correlation-request-id": [ + "c4484a1b-0778-477f-aef9-5fb346fce380" + ], + "x-ms-arm-service-request-id": [ + "5f529493-8855-45fb-b347-e68c0ca27032" + ], + "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:20200613T192917Z:c4484a1b-0778-477f-aef9-5fb346fce380" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:16 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8b5ad009-5c3f-45d9-abb1-4faba02ff91d" + ], + "x-ms-correlation-request-id": [ + "e84c6158-307c-4204-bc6b-0cdfab1dd100" + ], + "x-ms-arm-service-request-id": [ + "90fa6d62-38f6-4d54-8eba-4322b924c5cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192927Z:e84c6158-307c-4204-bc6b-0cdfab1dd100" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:26 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/westcentralus/operations/db309ad1-3cfd-4f11-b43c-8acc5fb70a25?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RiMzA5YWQxLTNjZmQtNGYxMS1iNDNjLThhY2M1ZmI3MGEyNT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2fa017a3-4b2e-48b3-8825-30b1a29a9ab3" + ], + "x-ms-correlation-request-id": [ + "d3b41185-c378-4f18-8b14-9b96be2905cd" + ], + "x-ms-arm-service-request-id": [ + "502b9cbe-a3c5-4d77-8567-270398b8f53b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T192937Z:d3b41185-c378-4f18-8b14-9b96be2905cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:36 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/ps1192/providers/Microsoft.Network/virtualHubs/ps4764?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM0NzY0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5454a838-39c7-47da-81a4-d1ee878ab990" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35230293-52c1-4569-8388-e07e93f80bab" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "25f3e130-a88f-4dab-807e-4cb1b016a8ee" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "bed3be7c-79fb-4547-bcce-c045a1b5d11d" + ], + "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:20200613T192938Z:25f3e130-a88f-4dab-807e-4cb1b016a8ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b076351-3b1d-40ef-8bfe-82bb64d5c8a7" + ], + "x-ms-correlation-request-id": [ + "c8eb8e53-2528-488a-b1d4-4bdb150a6f9b" + ], + "x-ms-arm-service-request-id": [ + "2bccafcf-e41d-4fd2-970d-33004fbc2e58" + ], + "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:20200613T192949Z:c8eb8e53-2528-488a-b1d4-4bdb150a6f9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "657f0681-f91c-422c-be3e-adeb035f0073" + ], + "x-ms-correlation-request-id": [ + "9fd841cc-067f-4339-abeb-3f9195b61d04" + ], + "x-ms-arm-service-request-id": [ + "b010d30d-f23d-4f96-a6e1-70d0cf4b7543" + ], + "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:20200613T192959Z:9fd841cc-067f-4339-abeb-3f9195b61d04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:29:58 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cec9b33f-0e95-48a4-a2e4-4272dcecc48b" + ], + "x-ms-correlation-request-id": [ + "dc59a567-b174-493b-bb14-90cd6cb08362" + ], + "x-ms-arm-service-request-id": [ + "d723b2e9-a08c-4582-b61b-bbb599a86c84" + ], + "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:20200613T193009Z:dc59a567-b174-493b-bb14-90cd6cb08362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9065325-991a-435d-a2b9-3a0e6bacda5d" + ], + "x-ms-correlation-request-id": [ + "0cd63f56-08e4-4e86-ba6b-8b9c64f10496" + ], + "x-ms-arm-service-request-id": [ + "b7f39600-fce8-4ad3-8111-7b816941f54a" + ], + "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:20200613T193019Z:0cd63f56-08e4-4e86-ba6b-8b9c64f10496" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e432d4a8-d7c4-43c7-949f-4bf298dc2554" + ], + "x-ms-correlation-request-id": [ + "3547dac8-51f3-4439-8217-2808f40bdefc" + ], + "x-ms-arm-service-request-id": [ + "19a91808-bb20-4196-a6e1-eb5401b701df" + ], + "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:20200613T193029Z:3547dac8-51f3-4439-8217-2808f40bdefc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2cb3d60b-3267-4cb5-87a7-998777bf5aa4" + ], + "x-ms-correlation-request-id": [ + "53cac3d6-b4cb-4532-a728-ad5cf97f5dae" + ], + "x-ms-arm-service-request-id": [ + "471ef69d-8d48-4c8f-9b44-c182c4dff5c1" + ], + "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:20200613T193039Z:53cac3d6-b4cb-4532-a728-ad5cf97f5dae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ae71f7a4-3ec8-4f8e-bb3c-cb010d771f48" + ], + "x-ms-correlation-request-id": [ + "25d5e959-ab64-4422-8db4-875aca92e40c" + ], + "x-ms-arm-service-request-id": [ + "6e528ef2-bb17-458e-bb05-0460a7bc0d2d" + ], + "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:20200613T193049Z:25d5e959-ab64-4422-8db4-875aca92e40c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c9729ab9-6bd3-4878-974a-c9f5ca43e1d7" + ], + "x-ms-correlation-request-id": [ + "4c6ac7a4-25d5-4074-b9af-8bdede2f73d7" + ], + "x-ms-arm-service-request-id": [ + "cbf0a13d-c69e-4add-86a6-6046be608bf9" + ], + "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:20200613T193059Z:4c6ac7a4-25d5-4074-b9af-8bdede2f73d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:30: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6a8010ad-5073-46fc-9b84-4d18c8840364" + ], + "x-ms-correlation-request-id": [ + "04a1fafe-8483-4a37-9247-8e8e0ce4d93e" + ], + "x-ms-arm-service-request-id": [ + "b789b4d8-8559-4663-8d8e-02b4bd0e4cf2" + ], + "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:20200613T193109Z:04a1fafe-8483-4a37-9247-8e8e0ce4d93e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31:09 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "04ebe326-d933-4653-86c5-f1079c335366" + ], + "x-ms-correlation-request-id": [ + "41e53e1c-ee88-49e7-8a03-cb8fd1cb5d6a" + ], + "x-ms-arm-service-request-id": [ + "2d301b76-7e79-42af-95a7-60ca95e978e4" + ], + "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:20200613T193119Z:41e53e1c-ee88-49e7-8a03-cb8fd1cb5d6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31:19 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "967cdc0d-7755-492d-ae96-7c3dc8f2e887" + ], + "x-ms-correlation-request-id": [ + "1a075ed9-8005-4969-97f0-953f5d22e9c1" + ], + "x-ms-arm-service-request-id": [ + "cc5f893f-f7c6-448f-9159-101748aecb61" + ], + "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:20200613T193129Z:1a075ed9-8005-4969-97f0-953f5d22e9c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31:29 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "14bdf219-d979-4ef4-907f-dd243dadf097" + ], + "x-ms-correlation-request-id": [ + "96c46d52-38d8-40d9-9fb2-f686f5975901" + ], + "x-ms-arm-service-request-id": [ + "58469671-eee4-4384-b10d-b4af07c6780c" + ], + "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:20200613T193139Z:96c46d52-38d8-40d9-9fb2-f686f5975901" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8b6c67da-3638-40e8-912a-de0ad743ba62" + ], + "x-ms-correlation-request-id": [ + "6771633e-0a87-4332-942a-064fa9d27349" + ], + "x-ms-arm-service-request-id": [ + "2805e96e-e0a7-4cbe-89cd-608f28fe83dc" + ], + "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:20200613T193149Z:6771633e-0a87-4332-942a-064fa9d27349" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31:49 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "294c56db-3b97-4768-ad73-e568e9016583" + ], + "x-ms-correlation-request-id": [ + "fa226207-2d38-4167-ab86-9eb409472a32" + ], + "x-ms-arm-service-request-id": [ + "2490c9ca-e16d-4cad-992a-de9e7cc760a7" + ], + "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:20200613T193159Z:fa226207-2d38-4167-ab86-9eb409472a32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:31: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d6d67987-a7aa-4a76-ae1b-c1e5cfce1342" + ], + "x-ms-correlation-request-id": [ + "b20f145f-53c0-4a57-aa20-486a48c134ec" + ], + "x-ms-arm-service-request-id": [ + "0d99acd9-f952-407f-a835-07b5c16fd2c7" + ], + "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:20200613T193209Z:b20f145f-53c0-4a57-aa20-486a48c134ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:32:09 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5296adb1-6ac3-416f-be88-c7f259cdacae" + ], + "x-ms-correlation-request-id": [ + "de514035-de59-493d-8d05-a5a210b98cd7" + ], + "x-ms-arm-service-request-id": [ + "faf973f2-3481-4fd5-bced-067b348dc1db" + ], + "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:20200613T193220Z:de514035-de59-493d-8d05-a5a210b98cd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:32:19 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1336f742-3269-4456-80ea-72d8056ce961" + ], + "x-ms-correlation-request-id": [ + "6428558a-37a6-4f28-8f2d-dfaa2edc9664" + ], + "x-ms-arm-service-request-id": [ + "493f38a0-1429-47db-9660-603af12fe20b" + ], + "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:20200613T193230Z:6428558a-37a6-4f28-8f2d-dfaa2edc9664" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:32:29 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ca0cf01b-9189-4ea8-9eda-40625310263a" + ], + "x-ms-correlation-request-id": [ + "fb61f6cb-d167-4f1d-a876-0433084cd806" + ], + "x-ms-arm-service-request-id": [ + "a7cbb380-07c9-48eb-a8c9-638c0eb4d5cb" + ], + "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:20200613T193240Z:fb61f6cb-d167-4f1d-a876-0433084cd806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:32: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8252bd81-4dfd-44c2-b26c-c04ff4d8dae2" + ], + "x-ms-correlation-request-id": [ + "ea190957-1371-4493-a4a5-5bae437dbcd1" + ], + "x-ms-arm-service-request-id": [ + "2b745848-14ff-43e9-a00a-d2c031075399" + ], + "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:20200613T193250Z:ea190957-1371-4493-a4a5-5bae437dbcd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:32:49 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "950171b1-c2ff-4937-831a-24b0d03a939b" + ], + "x-ms-correlation-request-id": [ + "367fd358-6f30-473f-8d6c-a6831c2bdbc1" + ], + "x-ms-arm-service-request-id": [ + "11135aa3-bdf5-46b4-bcfa-fb4102a79590" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193300Z:367fd358-6f30-473f-8d6c-a6831c2bdbc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33:00 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2a29f77-b2dd-4c43-8a7a-1e5d20c2138a" + ], + "x-ms-correlation-request-id": [ + "a6d6d49d-3945-4d28-b5c8-57a500ea7a5c" + ], + "x-ms-arm-service-request-id": [ + "91f07d6b-88dd-4635-a674-1d4804d6bf48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193310Z:a6d6d49d-3945-4d28-b5c8-57a500ea7a5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc5edb2d-01b7-48dc-b88c-0b341d29ec86" + ], + "x-ms-correlation-request-id": [ + "74a7ba69-db80-4f45-914f-00abfbd9c21b" + ], + "x-ms-arm-service-request-id": [ + "a2053946-330e-4014-9301-657d0363930f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193320Z:74a7ba69-db80-4f45-914f-00abfbd9c21b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "de4125d2-d289-4e3e-b444-ab6abfdc2c86" + ], + "x-ms-correlation-request-id": [ + "4b759b12-3bc5-4e94-b16b-2ef834a8e8ff" + ], + "x-ms-arm-service-request-id": [ + "9e86149f-2f20-465c-a203-598f29efc870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193330Z:4b759b12-3bc5-4e94-b16b-2ef834a8e8ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33:30 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b98349a5-0a19-437b-aff6-a51b8859fb55" + ], + "x-ms-correlation-request-id": [ + "28c6e929-174f-46af-8388-472b925fbf4b" + ], + "x-ms-arm-service-request-id": [ + "73ff82a0-d8f5-4440-b4e4-90a377dde470" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193340Z:28c6e929-174f-46af-8388-472b925fbf4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "146f1b4b-f431-4a05-a5f6-0e0c711cb421" + ], + "x-ms-correlation-request-id": [ + "c8398a6b-ec6e-4bc2-8a8b-5f505d765043" + ], + "x-ms-arm-service-request-id": [ + "e0691a7a-70f8-4779-99ee-3d11b7a51664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193350Z:c8398a6b-ec6e-4bc2-8a8b-5f505d765043" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:33: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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1156c21d-5386-4d6d-a762-784f734ec7f7" + ], + "x-ms-correlation-request-id": [ + "1a506403-f494-438a-9221-5a6ccac78c89" + ], + "x-ms-arm-service-request-id": [ + "107a6646-88d5-4d03-8277-a4af95e9b8f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193400Z:1a506403-f494-438a-9221-5a6ccac78c89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:00 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/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29aa3389-babb-48fd-8a71-ed5e4c97079e" + ], + "x-ms-correlation-request-id": [ + "f66cad97-0130-4911-b225-1a169485e9d8" + ], + "x-ms-arm-service-request-id": [ + "33f72fc4-7eef-4198-9d98-2c823c628b80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193410Z:f66cad97-0130-4911-b225-1a169485e9d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:10 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/westcentralus/operationResults/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM1MjMwMjkzLTUyYzEtNDU2OS04Mzg4LWUwN2U5M2Y4MGJhYj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "35230293-52c1-4569-8388-e07e93f80bab" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/35230293-52c1-4569-8388-e07e93f80bab?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "25f3e130-a88f-4dab-807e-4cb1b016a8ee" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "bed3be7c-79fb-4547-bcce-c045a1b5d11d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193410Z:e4bd8b3b-482f-454d-966a-d3593b9a4621" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps1192/providers/Microsoft.Network/virtualWans/ps7084?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMTE5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHM3MDg0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a4e5478-575c-491a-9e1e-3b375627d622" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "358fafe8-199e-4b33-8a08-26a5630932e8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "c78f27b0-b62d-409f-abf1-8db255f16c9f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "abfe80f2-ac59-4f83-833c-b38593ea4e2d" + ], + "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:20200613T193411Z:c78f27b0-b62d-409f-abf1-8db255f16c9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzM1OGZhZmU4LTE5OWUtNGIzMy04YTA4LTI2YTU2MzA5MzJlOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d58ddf34-d81a-49ac-ace7-0fbbd8811d5d" + ], + "x-ms-correlation-request-id": [ + "eca43faf-4aad-442c-a0bc-45f6e0f9ec01" + ], + "x-ms-arm-service-request-id": [ + "40f8cfc0-9783-40ed-9627-65216ea602c9" + ], + "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:20200613T193421Z:eca43faf-4aad-442c-a0bc-45f6e0f9ec01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34: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/westcentralus/operationResults/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzM1OGZhZmU4LTE5OWUtNGIzMy04YTA4LTI2YTU2MzA5MzJlOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "358fafe8-199e-4b33-8a08-26a5630932e8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/358fafe8-199e-4b33-8a08-26a5630932e8?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "c78f27b0-b62d-409f-abf1-8db255f16c9f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "abfe80f2-ac59-4f83-833c-b38593ea4e2d" + ], + "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:20200613T193421Z:fc65923d-145e-4382-a09b-7854787c2f71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps1192?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzMTE5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ad1980d-61c1-4325-9f33-e48128dc78d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "7c94d536-3ab4-43b6-bf93-3bdda05bdb43" + ], + "x-ms-correlation-request-id": [ + "7c94d536-3ab4-43b6-bf93-3bdda05bdb43" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193422Z:7c94d536-3ab4-43b6-bf93-3bdda05bdb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "620ab719-5282-468f-a60f-bd174383b3fa" + ], + "x-ms-correlation-request-id": [ + "620ab719-5282-468f-a60f-bd174383b3fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193437Z:620ab719-5282-468f-a60f-bd174383b3fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f7154bfe-6a0f-44a2-aeb8-1c512cd7bce4" + ], + "x-ms-correlation-request-id": [ + "f7154bfe-6a0f-44a2-aeb8-1c512cd7bce4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193452Z:f7154bfe-6a0f-44a2-aeb8-1c512cd7bce4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:34:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "931e36b2-f02e-4197-a314-6604f5879d0e" + ], + "x-ms-correlation-request-id": [ + "931e36b2-f02e-4197-a314-6604f5879d0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193507Z:931e36b2-f02e-4197-a314-6604f5879d0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:35:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExOTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE9USXRWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "52121023-12ce-4f68-b0cf-06e6490f25df" + ], + "x-ms-correlation-request-id": [ + "52121023-12ce-4f68-b0cf-06e6490f25df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200613T193507Z:52121023-12ce-4f68-b0cf-06e6490f25df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Jun 2020 19:35:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CortexVirtualHubCRUD": [ + "ps1192", + "ps7084", + "ps4764" + ] + }, + "Variables": { + "SubscriptionId": "62364504-2406-418e-971c-05822ff72fad" + } +} \ No newline at end of file