From 9394bff34ba0c283cbc7c2188eaf5a4bc9fd3c11 Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Wed, 19 Aug 2020 22:47:23 -0700 Subject: [PATCH 01/12] Add Get-AzVirtualRouterPeerAdvertisedRouter and Get-AzVirtualRouterPeerLearnedRouter --- src/Network/Network/Az.Network.psd1 | 1 + src/Network/Network/ChangeLog.md | 3 + .../Common/NetworkResourceManagerProfile.cs | 2 + .../Network/Generated/Models/PSPeerRoute.cs | 24 +++ ...VirtualRouterPeerAdvertisedRouteCommand.cs | 71 +++++++++ ...tAzVirtualRouterPeerLearnedRouteCommand.cs | 71 +++++++++ .../Get-AzVirtualRouterPeerAdvertisedRoute.md | 147 ++++++++++++++++++ .../Get-AzVirtualRouterPeerLearnedRoute.md | 146 +++++++++++++++++ 8 files changed, 465 insertions(+) create mode 100644 src/Network/Network/Generated/Models/PSPeerRoute.cs create mode 100644 src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs create mode 100644 src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs create mode 100644 src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md create mode 100644 src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 30758b6bd350..34dc0ac3c1af 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -481,6 +481,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Remove-AzVirtualRouter', 'Get-AzVirtualRouter', 'Add-AzVirtualRouterPeer', 'Update-AzVirtualRouterPeer', 'Remove-AzVirtualRouterPeer', 'Get-AzVirtualRouterPeer', + 'Get-AzVirtualRouterPeerAdvertisedRoute', 'Get-AzVirtualRouterPeerLearnedRoute', 'New-AzIpGroup', 'Remove-AzIpGroup', 'Get-AzIpGroup', 'Set-AzIpGroup', 'New-AzIpConfigurationBgpPeeringAddressObject', 'New-AzIpAllocation', 'Get-AzIpAllocation', 'Remove-AzIpAllocation', diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 4e5804397ccc..a1e2871f3300 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,6 +19,9 @@ ---> ## Upcoming Release +* Add new cmdlets for Virtual Router Peer Routes + - `Get-AzVirtualRouterPeerLearnedRoute` + - `Get-AzVirtualRouterPeerAdvertisedRoute` * [Breaking Change] Updated below cmdlets to align resource virtual router and virtual hub - `New-AzVirtualRouter`: - Added -HostedSubnet parameter to support IP configuration child resource diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index 8b3db64da9a2..32b14b815c23 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1349,11 +1349,13 @@ private static void Initialize() // CNM to MNM cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); cfg.CreateMap(); // MNM to CNM cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); cfg.CreateMap(); // IpGroup diff --git a/src/Network/Network/Generated/Models/PSPeerRoute.cs b/src/Network/Network/Generated/Models/PSPeerRoute.cs new file mode 100644 index 000000000000..e7f9667811e8 --- /dev/null +++ b/src/Network/Network/Generated/Models/PSPeerRoute.cs @@ -0,0 +1,24 @@ +using Microsoft.Azure.Management.Network.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public partial class PSPeerRoute + { + [Ps1Xml(Target = ViewControl.Table)] + public string LocalAddress { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string Network { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string NextHop { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string SourcePeer { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string Origin { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public string AsPath { get; set; } + [Ps1Xml(Target = ViewControl.Table)] + public int? Weight { get; set; } + } +} \ No newline at end of file diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs new file mode 100644 index 000000000000..8aa40cc6f55d --- /dev/null +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs @@ -0,0 +1,71 @@ +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Network; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouterPeerAdvertisedRoute", DefaultParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName), OutputType(typeof(PSPeerRoute))] + public class GetVirtualRouterPeerAdvertisedRouteCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router peer resource group's name")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router name")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs")] + [ValidateNotNullOrEmpty] + public virtual string VirtualRouterName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router peer name")] + [ValidateNotNullOrEmpty] + public virtual string PeerName { get; set; } + + [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The virtual router peer input object.")] + [ValidateNotNullOrEmpty] + public PSVirtualRouterPeer InputObject { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + + if (string.Equals(this.ParameterSetName, VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, StringComparison.OrdinalIgnoreCase)) + { + var resourceInfo = new ResourceIdentifier(InputObject.Id); + ResourceGroupName = resourceInfo.ResourceGroupName; + PeerName = resourceInfo.ResourceName; + VirtualRouterName = resourceInfo.ParentResource; + } + + List advertisedRoutes = new List(); + foreach (var route in this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListAdvertisedRoutes(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Value) + { + advertisedRoutes.Add(NetworkResourceManagerProfile.Mapper.Map(route)); + } + + WriteObject(advertisedRoutes, true); + } + } +} \ No newline at end of file diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs new file mode 100644 index 000000000000..49525ec10764 --- /dev/null +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs @@ -0,0 +1,71 @@ +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Network; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualRouterPeerLearnedRoute", DefaultParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName), OutputType(typeof(PSPeerRoute))] + public class GetVirtualRouterPeerLearnedRouteCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router peer resource group's name")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + [Alias("ResourceName")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router name")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs")] + [ValidateNotNullOrEmpty] + public virtual string VirtualRouterName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Virtual router peer name")] + [ValidateNotNullOrEmpty] + public virtual string PeerName { get; set; } + + [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The virtual router peer input object.")] + [ValidateNotNullOrEmpty] + public PSVirtualRouterPeer InputObject { get; set; } + + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + + if (string.Equals(this.ParameterSetName, VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, StringComparison.OrdinalIgnoreCase)) + { + var resourceInfo = new ResourceIdentifier(InputObject.Id); + ResourceGroupName = resourceInfo.ResourceGroupName; + PeerName = resourceInfo.ResourceName; + VirtualRouterName = resourceInfo.ParentResource; + } + + List learnedRoutes = new List(); + foreach (var route in this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListLearnedRoutes(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Value) + { + learnedRoutes.Add(NetworkResourceManagerProfile.Mapper.Map(route)); + } + + WriteObject(learnedRoutes, true); + } + } +} \ No newline at end of file diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md new file mode 100644 index 000000000000..404723788d7c --- /dev/null +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md @@ -0,0 +1,147 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: +schema: 2.0.0 +--- + +# Get-AzVirtualRouterPeerAdvertisedRoute + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### VirtualRouterPeerNameParameterSet (Default) +``` +Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName -VirtualRouterName + -PeerName [-AsJob] [-DefaultProfile ] [] +``` + +### VirtualRouterPeerObjectParameterSet +``` +Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName -VirtualRouterName + -PeerName -InputObject [-AsJob] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The virtual router peer input object. + +```yaml +Type: PSVirtualRouterPeer +Parameter Sets: VirtualRouterPeerObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PeerName +Virtual router peer name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Virtual router peer resource group's name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VirtualRouterName +Virtual router name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSPeerRoute + +## NOTES + +## RELATED LINKS diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md new file mode 100644 index 000000000000..da6a82f5d7df --- /dev/null +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md @@ -0,0 +1,146 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: +schema: 2.0.0 +--- + +# Get-AzVirtualRouterPeerLearnedRoute + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### VirtualRouterPeerNameParameterSet (Default) +``` +Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName -VirtualRouterName -PeerName + [-AsJob] [-DefaultProfile ] [] +``` + +### VirtualRouterPeerObjectParameterSet +``` +Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName -VirtualRouterName -PeerName + -InputObject [-AsJob] [-DefaultProfile ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The virtual router peer input object. + +```yaml +Type: PSVirtualRouterPeer +Parameter Sets: VirtualRouterPeerObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PeerName +Virtual router peer name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Virtual router peer resource group's name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -VirtualRouterName +Virtual router name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSPeerRoute + +## NOTES + +## RELATED LINKS From a65494c51cdf756bc0965e06f5f5f7ce1e5a5191 Mon Sep 17 00:00:00 2001 From: litchiyangMSFT <64560090+litchiyangMSFT@users.noreply.github.com> Date: Wed, 19 Aug 2020 23:06:38 -0700 Subject: [PATCH 02/12] Update Get-AzVirtualRouterPeerAdvertisedRoute.md --- .../help/Get-AzVirtualRouterPeerAdvertisedRoute.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md index 404723788d7c..1f01fb7289ca 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md @@ -32,10 +32,14 @@ Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName -VirtualRoute ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +Get-AzVirtualRouterPeerAdvertisedRouter -ResourceGroupName $resourceGroupName -VirtualRouterName $virtualRouterName -PeerName $peerName ``` -{{ Add example description here }} +### Example 2 +```powershell +$virtualRouterPeer = Get-AzVirtualRouterPeer -ResourceGroupName $resourceGroupName -VirtualRouterName $virtualRouterName -PeerName $peerName +Get-AzVirtualRouterPeerAdvertisedRouter -InputObject $virtualRouterPeer +``` ## PARAMETERS From aa02766e59674a9379df472af6cb7a82c8429c6b Mon Sep 17 00:00:00 2001 From: litchiyangMSFT <64560090+litchiyangMSFT@users.noreply.github.com> Date: Wed, 19 Aug 2020 23:07:19 -0700 Subject: [PATCH 03/12] Update Get-AzVirtualRouterPeerLearnedRoute.md --- .../Network/help/Get-AzVirtualRouterPeerLearnedRoute.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md index da6a82f5d7df..da35221db6a9 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md @@ -31,10 +31,14 @@ Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName -VirtualRouterNa ### Example 1 ```powershell -PS C:\> {{ Add example code here }} +Get-AzVirtualRouterPeerLearnedRouter -ResourceGroupName $resourceGroupName -VirtualRouterName $virtualRouterName -PeerName $peerName ``` -{{ Add example description here }} +### Example 2 +```powershell +$virtualRouterPeer = Get-AzVirtualRouterPeer -ResourceGroupName $resourceGroupName -VirtualRouterName $virtualRouterName -PeerName $peerName +Get-AzVirtualRouterPeerLearnedRouter -InputObject $virtualRouterPeer +``` ## PARAMETERS From 1fc98ff074cfb8acab5f83307ecec7c40594379a Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Wed, 19 Aug 2020 23:17:47 -0700 Subject: [PATCH 04/12] Fix bug in parameterset --- ...VirtualRouterPeerAdvertisedRouteCommand.cs | 5 +++- ...tAzVirtualRouterPeerLearnedRouteCommand.cs | 5 +++- .../Get-AzVirtualRouterPeerAdvertisedRoute.md | 27 +++++++++---------- .../Get-AzVirtualRouterPeerLearnedRoute.md | 26 +++++++++--------- 4 files changed, 34 insertions(+), 29 deletions(-) diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs index 8aa40cc6f55d..71778a99b221 100644 --- a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Commands.Network public class GetVirtualRouterPeerAdvertisedRouteCommand : NetworkBaseCmdlet { [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router peer resource group's name")] @@ -20,8 +21,8 @@ public class GetVirtualRouterPeerAdvertisedRouteCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public virtual string ResourceGroupName { get; set; } - [Alias("ResourceName")] [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router name")] @@ -29,7 +30,9 @@ public class GetVirtualRouterPeerAdvertisedRouteCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public virtual string VirtualRouterName { get; set; } + [Alias("ResourceName")] [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router peer name")] diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs index 49525ec10764..308abd203e0e 100644 --- a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs @@ -13,6 +13,7 @@ namespace Microsoft.Azure.Commands.Network public class GetVirtualRouterPeerLearnedRouteCommand : NetworkBaseCmdlet { [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router peer resource group's name")] @@ -20,8 +21,8 @@ public class GetVirtualRouterPeerLearnedRouteCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public virtual string ResourceGroupName { get; set; } - [Alias("ResourceName")] [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router name")] @@ -29,7 +30,9 @@ public class GetVirtualRouterPeerLearnedRouteCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public virtual string VirtualRouterName { get; set; } + [Alias("ResourceName")] [Parameter( + ParameterSetName = VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Virtual router peer name")] diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md index 404723788d7c..801cca65bbc8 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md @@ -20,9 +20,8 @@ Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName -VirtualRoute ### VirtualRouterPeerObjectParameterSet ``` -Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName -VirtualRouterName - -PeerName -InputObject [-AsJob] [-DefaultProfile ] - [] +Get-AzVirtualRouterPeerAdvertisedRoute -InputObject [-AsJob] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -43,7 +42,7 @@ PS C:\> {{ Add example code here }} Run cmdlet in the background ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -58,7 +57,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -73,7 +72,7 @@ Accept wildcard characters: False The virtual router peer input object. ```yaml -Type: PSVirtualRouterPeer +Type: Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer Parameter Sets: VirtualRouterPeerObjectParameterSet Aliases: @@ -88,9 +87,9 @@ Accept wildcard characters: False Virtual router peer name ```yaml -Type: String -Parameter Sets: (All) -Aliases: +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet +Aliases: ResourceName Required: True Position: Named @@ -103,8 +102,8 @@ Accept wildcard characters: False Virtual router peer resource group's name ```yaml -Type: String -Parameter Sets: (All) +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet Aliases: Required: True @@ -118,9 +117,9 @@ Accept wildcard characters: False Virtual router name ```yaml -Type: String -Parameter Sets: (All) -Aliases: ResourceName +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet +Aliases: Required: True Position: Named diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md index da6a82f5d7df..7141a9066b2d 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md @@ -20,8 +20,8 @@ Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName -VirtualRouterNa ### VirtualRouterPeerObjectParameterSet ``` -Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName -VirtualRouterName -PeerName - -InputObject [-AsJob] [-DefaultProfile ] [] +Get-AzVirtualRouterPeerLearnedRoute -InputObject [-AsJob] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -42,7 +42,7 @@ PS C:\> {{ Add example code here }} Run cmdlet in the background ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -57,7 +57,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -72,7 +72,7 @@ Accept wildcard characters: False The virtual router peer input object. ```yaml -Type: PSVirtualRouterPeer +Type: Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer Parameter Sets: VirtualRouterPeerObjectParameterSet Aliases: @@ -87,9 +87,9 @@ Accept wildcard characters: False Virtual router peer name ```yaml -Type: String -Parameter Sets: (All) -Aliases: +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet +Aliases: ResourceName Required: True Position: Named @@ -102,8 +102,8 @@ Accept wildcard characters: False Virtual router peer resource group's name ```yaml -Type: String -Parameter Sets: (All) +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet Aliases: Required: True @@ -117,9 +117,9 @@ Accept wildcard characters: False Virtual router name ```yaml -Type: String -Parameter Sets: (All) -Aliases: ResourceName +Type: System.String +Parameter Sets: VirtualRouterPeerNameParameterSet +Aliases: Required: True Position: Named From 3bbd37777f678d3b37ff5f6465cf9179a4ec9dc5 Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Wed, 19 Aug 2020 23:47:41 -0700 Subject: [PATCH 05/12] Change test name --- .../ScenarioTests/HubBgpConnectionTests.cs | 22 ----- .../ScenarioTests/HubBgpConnectionTests.ps1 | 80 ------------------- .../ScenarioTests/VirtualRouterTests.cs | 8 ++ .../ScenarioTests/VirtualRouterTests.ps1 | 55 +++++++++++++ .../TestVirtualRouterPeerCRUD.json} | 0 5 files changed, 63 insertions(+), 102 deletions(-) delete mode 100644 src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.cs delete mode 100644 src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.ps1 rename src/Network/Network.Test/SessionRecords/{Commands.Network.Test.ScenarioTests.HubBgpConnectionTests/TestHubBgpConnectionCRUDMinimalParameters.json => Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json} (100%) diff --git a/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.cs b/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.cs deleted file mode 100644 index fb207551d1c6..000000000000 --- a/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Microsoft.Azure.Commands.Network.Test.ScenarioTests; -using Microsoft.WindowsAzure.Commands.ScenarioTest; -using Xunit; - -namespace Commands.Network.Test.ScenarioTests -{ - public class HubBgpConnectionTests : NetworkTestRunner - { - public HubBgpConnectionTests(Xunit.Abstractions.ITestOutputHelper output) - : base(output) - { - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - [Trait(Category.Owner, NrpTeamAlias.pgtm)] - public void TestHubBgpConnectionCRUDMinimalParameters() - { - TestRunner.RunTestScript(string.Format("Test-HubBgpConnectionCRUD")); - } - } -} \ No newline at end of file diff --git a/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.ps1 b/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.ps1 deleted file mode 100644 index 1dee93f19fd1..000000000000 --- a/src/Network/Network.Test/ScenarioTests/HubBgpConnectionTests.ps1 +++ /dev/null @@ -1,80 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# 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. -# ---------------------------------------------------------------------------------- - -function Check-CmdletReturnType -{ - param($cmdletName, $cmdletReturn) - - $cmdletData = Get-Command $cmdletName - Assert-NotNull $cmdletData - [array]$cmdletReturnTypes = $cmdletData.OutputType.Name | Foreach-Object { return ($_ -replace "Microsoft.Azure.Commands.Network.Models.","") } - [array]$cmdletReturnTypes = $cmdletReturnTypes | Foreach-Object { return ($_ -replace "System.","") } - $realReturnType = $cmdletReturn.GetType().Name -replace "Microsoft.Azure.Commands.Network.Models.","" - return $cmdletReturnTypes -contains $realReturnType -} - -<# -.SYNOPSIS -Test creating new HubBgpConnection -#> -function Test-HubBgpConnectionCRUD -{ - # Setup - $rgname = Get-ResourceGroupName - $vnetName = Get-ResourceName - $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap" - $virtualRouterName = Get-ResourceName - $virtualWanName = Get-ResourceName - $subnetName = Get-ResourceName - $peerName = Get-ResourceName - - try - { - # Create resource group - $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } - - # Create virtual network and subnet - $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 - $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $rglocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet - $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname - $hostedSubnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet - - # Create virtual router - $virtualRouter = New-AzVirtualRouter -ResourceGroupName $rgname -location $rglocation -Name $virtualRouterName -HostedSubnet $hostedsubnet.Id - $virtualRouter = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName - - # Create hub bgp connection - $actualBgpConnection = Add-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -PeerIp "192.168.1.5" -PeerAsn "20000" - $expectedBgpConnection = Get-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName - Assert-AreEqual $expectedBgpConnection.Peerings.PeerName $actualBgpConnection.PeerName - Assert-AreEqual $expectedBgpConnection.PeerIp "192.168.1.5" - Assert-AreEqual $expectedBgpConnection.PeerAsn "20000" - - #delete hub bgp connection - $deleteBgpConnection = Remove-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -Force - Assert-AreEqual 0 @($deleteBgpConnection.Peerings).Count - - # Delete virtual router - $deleteVirtualRouter = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force - Assert-AreEqual true $deleteVirtualRouter - - $list = Get-AzVirtualRouter -ResourceGroupName $rgname - Assert-AreEqual 0 @($list).Count - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs index d8b4c93ca38e..bca79d5c13c6 100644 --- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs +++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs @@ -32,5 +32,13 @@ public void TestVirtualRouterCRUDMinimalParameters() { TestRunner.RunTestScript(string.Format("Test-VirtualRouterCRUD")); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.pgtm)] + public void TestVirtualRouterPeerCRUD() + { + TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerCRUD")); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 index af5cf2b8bd62..8d126b6edfa7 100644 --- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 @@ -75,3 +75,58 @@ function Test-VirtualRouterCRUD Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Test creating new virtualRouterPeer +#> +function Test-VirtualRouterPeerCRUD +{ + # Setup + $rgname = Get-ResourceGroupName + $vnetName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap" + $virtualRouterName = Get-ResourceName + $virtualWanName = Get-ResourceName + $subnetName = Get-ResourceName + $peerName = Get-ResourceName + + try + { + # Create resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # Create virtual network and subnet + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $rglocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet + $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $hostedSubnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet + + # Create virtual router + $virtualRouter = New-AzVirtualRouter -ResourceGroupName $rgname -location $rglocation -Name $virtualRouterName -HostedSubnet $hostedsubnet.Id + $virtualRouter = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName + + # Create hub bgp connection + $actualBgpConnection = Add-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -PeerIp "192.168.1.5" -PeerAsn "20000" + $expectedBgpConnection = Get-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName + Assert-AreEqual $expectedBgpConnection.Peerings.PeerName $actualBgpConnection.PeerName + Assert-AreEqual $expectedBgpConnection.PeerIp "192.168.1.5" + Assert-AreEqual $expectedBgpConnection.PeerAsn "20000" + + #delete hub bgp connection + $deleteBgpConnection = Remove-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -Force + Assert-AreEqual 0 @($deleteBgpConnection.Peerings).Count + + # Delete virtual router + $deleteVirtualRouter = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force + Assert-AreEqual true $deleteVirtualRouter + + $list = Get-AzVirtualRouter -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.HubBgpConnectionTests/TestHubBgpConnectionCRUDMinimalParameters.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json similarity index 100% rename from src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.HubBgpConnectionTests/TestHubBgpConnectionCRUDMinimalParameters.json rename to src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json From 5d6af5dda40f0a68cc00620ebb962f7a87c07a5a Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Thu, 20 Aug 2020 15:26:47 +0800 Subject: [PATCH 06/12] 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 a1e2871f3300..996708514fd9 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,7 +19,7 @@ ---> ## Upcoming Release -* Add new cmdlets for Virtual Router Peer Routes +* Added new cmdlets for Virtual Router Peer Routes - `Get-AzVirtualRouterPeerLearnedRoute` - `Get-AzVirtualRouterPeerAdvertisedRoute` * [Breaking Change] Updated below cmdlets to align resource virtual router and virtual hub From 6bba557f1137b0facc73fa70785f2709d7d40d45 Mon Sep 17 00:00:00 2001 From: litchiyangMSFT <64560090+litchiyangMSFT@users.noreply.github.com> Date: Tue, 1 Sep 2020 00:39:42 -0700 Subject: [PATCH 07/12] Update Get-AzVirtualRouterPeerAdvertisedRoute.md --- .../Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md index 84732deb7e40..d8559c8ad33b 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerAdvertisedRoute.md @@ -1,14 +1,14 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azvirtualrouterpeeradvertisedroute schema: 2.0.0 --- # Get-AzVirtualRouterPeerAdvertisedRoute ## SYNOPSIS -{{ Fill in the Synopsis }} +List routes being advertised by specific virtual router peer ## SYNTAX @@ -25,7 +25,7 @@ Get-AzVirtualRouterPeerAdvertisedRoute -InputObject [-AsJo ``` ## DESCRIPTION -{{ Fill in the Description }} +Given A virtual router peer either by name or by object, enumerate routes being advertised to that peer by a specific virtual router. ## EXAMPLES From 428d309ecd877649c12a129f9e556493a1b2e57d Mon Sep 17 00:00:00 2001 From: litchiyangMSFT <64560090+litchiyangMSFT@users.noreply.github.com> Date: Tue, 1 Sep 2020 00:41:54 -0700 Subject: [PATCH 08/12] Update Get-AzVirtualRouterPeerLearnedRoute.md --- .../Network/help/Get-AzVirtualRouterPeerLearnedRoute.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md index 4a0afe95017e..8c13683856e1 100644 --- a/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md +++ b/src/Network/Network/help/Get-AzVirtualRouterPeerLearnedRoute.md @@ -1,14 +1,14 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azvirtualrouterpeerlearnedroute schema: 2.0.0 --- # Get-AzVirtualRouterPeerLearnedRoute ## SYNOPSIS -{{ Fill in the Synopsis }} +List routes learned by a specific virtual router peer ## SYNTAX @@ -25,7 +25,7 @@ Get-AzVirtualRouterPeerLearnedRoute -InputObject [-AsJob] ``` ## DESCRIPTION -{{ Fill in the Description }} +Enumerate routes learned by a virtual router peer from other sources. ## EXAMPLES From a43ea3f8ae8d3e8bcbaf9962e26eccb1959d4497 Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Mon, 28 Sep 2020 16:29:35 -0700 Subject: [PATCH 09/12] test --- .../ScenarioTests/VirtualRouterTests.cs | 8 +++++ ...VirtualRouterPeerAdvertisedRouteCommand.cs | 35 ++++++++++++++++++- 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs index bca79d5c13c6..5d4ba38d88cc 100644 --- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs +++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs @@ -40,5 +40,13 @@ public void TestVirtualRouterPeerCRUD() { TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerCRUD")); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.pgtm)] + public void Test() + { + TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerCRUD")); + } } } diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs index 71778a99b221..8a881be242ee 100644 --- a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs @@ -6,6 +6,12 @@ using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using System; +using Microsoft.Azure.Commands; +using Newtonsoft.Json; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Internal.Common; +using Newtonsoft.Json.Linq; namespace Microsoft.Azure.Commands.Network { @@ -50,10 +56,28 @@ public class GetVirtualRouterPeerAdvertisedRouteCommand : NetworkBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } + IAzureContext context; + private IAzureRestClient _client; + private IAzureRestClient ServiceClient + { + get + { + if (_client == null) + { + var clientFactory = AzureSession.Instance.ClientFactory; + _client = clientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + } + + return _client; + } + } + public override void Execute() { base.Execute(); + context = DefaultContext; + if (string.Equals(this.ParameterSetName, VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, StringComparison.OrdinalIgnoreCase)) { var resourceInfo = new ResourceIdentifier(InputObject.Id); @@ -62,8 +86,17 @@ public override void Execute() VirtualRouterName = resourceInfo.ParentResource; } + + var locationHeader = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListAdvertisedRoutesWithHttpMessagesAsync(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Result.Response.Headers.Location; + + string resourceId = locationHeader.LocalPath; + string apiVersion = locationHeader.Query.Substring(13); + var reponse = ServiceClient.Operations.GetResourceWithFullResponse(resourceId, apiVersion).Body; + dynamic routeServiceRole = JObject.Parse(reponse); + List peerRouteList = routeServiceRole.RouteServiceRole_IN_0.ToObject>(); + List advertisedRoutes = new List(); - foreach (var route in this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListAdvertisedRoutes(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Value) + foreach (var route in peerRouteList) { advertisedRoutes.Add(NetworkResourceManagerProfile.Mapper.Map(route)); } From 680d0cd2143577d0a042df51372469c8202a88c7 Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Tue, 29 Sep 2020 19:30:04 -0700 Subject: [PATCH 10/12] test --- .../ScenarioTests/VirtualRouterTests.cs | 4 +- .../ScenarioTests/VirtualRouterTests.ps1 | 55 +++++++++++++++++++ ...VirtualRouterPeerAdvertisedRouteCommand.cs | 5 +- ...tAzVirtualRouterPeerLearnedRouteCommand.cs | 34 +++++++++++- 4 files changed, 92 insertions(+), 6 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs index 5d4ba38d88cc..5fe86126a5af 100644 --- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs +++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.cs @@ -44,9 +44,9 @@ public void TestVirtualRouterPeerCRUD() [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, NrpTeamAlias.pgtm)] - public void Test() + public void TestVirtualRouterPeerRoutes() { - TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerCRUD")); + TestRunner.RunTestScript(string.Format("Test-VirtualRouterPeerRoutes")); } } } diff --git a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 index 8d126b6edfa7..dddd8b5b6be2 100644 --- a/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/VirtualRouterTests.ps1 @@ -129,4 +129,59 @@ function Test-VirtualRouterPeerCRUD # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Test virtual router peer learned and advertiesd routes (bgp routes) +#> +function Test-VirtualRouterPeerRoutes +{ + # Setup + $rgname = Get-ResourceGroupName + $vnetName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "centraluseuap" + $virtualRouterName = Get-ResourceName + $virtualWanName = Get-ResourceName + $subnetName = Get-ResourceName + $peerName = Get-ResourceName + + try + { + # Create resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # Create virtual network and subnet + $subnet = New-AzVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.0.0/24 + $vnet = New-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $rglocation -AddressPrefix 10.0.0.0/16 -Subnet $subnet + $vnet = Get-AzVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $subnet = Get-AzVirtualNetworkSubnetConfig -Name $subnetName -VirtualNetwork $vnet + + # Create virtual router + $virtualRouter = New-AzVirtualRouter -ResourceGroupName $rgname -location $rglocation -Name $virtualRouterName -HostedSubnet $subnet.Id + $virtualRouter = Get-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName + + # Create virtual router peering + $peering = Add-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -PeerIp "192.168.1.5" -PeerAsn "20000" + $peering = Get-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName + + $learnedRoutes = Get-AzVirtualRouterPeerLearnedRoute -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName + $advertisedRoutes = Get-AzVirtualRouterPeerAdvertisedRoute -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName + + #delete virtual router peering + $deletePeering = Remove-AzVirtualRouterPeer -ResourceGroupName $rgname -VirtualRouterName $virtualRouterName -PeerName $peerName -Force + Assert-AreEqual 0 @($deletePeering.Peerings).Count + + # Delete virtual router + $deleteVirtualRouter = Remove-AzVirtualRouter -ResourceGroupName $rgname -RouterName $virtualRouterName -PassThru -Force + Assert-AreEqual true $deleteVirtualRouter + + $list = Get-AzVirtualRouter -ResourceGroupName $rgname + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs index 8a881be242ee..34a05239c2c0 100644 --- a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerAdvertisedRouteCommand.cs @@ -6,8 +6,6 @@ using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using System; -using Microsoft.Azure.Commands; -using Newtonsoft.Json; using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Internal.Common; @@ -86,14 +84,15 @@ public override void Execute() VirtualRouterName = resourceInfo.ParentResource; } - var locationHeader = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListAdvertisedRoutesWithHttpMessagesAsync(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Result.Response.Headers.Location; string resourceId = locationHeader.LocalPath; string apiVersion = locationHeader.Query.Substring(13); var reponse = ServiceClient.Operations.GetResourceWithFullResponse(resourceId, apiVersion).Body; dynamic routeServiceRole = JObject.Parse(reponse); + List peerRouteList = routeServiceRole.RouteServiceRole_IN_0.ToObject>(); + peerRouteList.AddRange(routeServiceRole.RouteServiceRole_IN_1.ToObject>()); List advertisedRoutes = new List(); foreach (var route in peerRouteList) diff --git a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs index 308abd203e0e..45595a31a921 100644 --- a/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs +++ b/src/Network/Network/VirtualRouterPeer/GetAzVirtualRouterPeerLearnedRouteCommand.cs @@ -6,6 +6,10 @@ using Microsoft.Azure.Management.Network.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using System; +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Internal.Common; +using Newtonsoft.Json.Linq; namespace Microsoft.Azure.Commands.Network { @@ -50,10 +54,28 @@ public class GetVirtualRouterPeerLearnedRouteCommand : NetworkBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } + IAzureContext context; + private IAzureRestClient _client; + private IAzureRestClient ServiceClient + { + get + { + if (_client == null) + { + var clientFactory = AzureSession.Instance.ClientFactory; + _client = clientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + } + + return _client; + } + } + public override void Execute() { base.Execute(); + context = DefaultContext; + if (string.Equals(this.ParameterSetName, VirtualRouterPeerParameterSetNames.ByVirtualRouterPeerInputObject, StringComparison.OrdinalIgnoreCase)) { var resourceInfo = new ResourceIdentifier(InputObject.Id); @@ -62,8 +84,18 @@ public override void Execute() VirtualRouterName = resourceInfo.ParentResource; } + var locationHeader = this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListLearnedRoutesWithHttpMessagesAsync(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Result.Response.Headers.Location; + + string resourceId = locationHeader.LocalPath; + string apiVersion = locationHeader.Query.Substring(13); + var reponse = ServiceClient.Operations.GetResourceWithFullResponse(resourceId, apiVersion).Body; + dynamic routeServiceRole = JObject.Parse(reponse); + + List peerRouteList = routeServiceRole.RouteServiceRole_IN_0.ToObject>(); + peerRouteList.AddRange(routeServiceRole.RouteServiceRole_IN_1.ToObject>()); + List learnedRoutes = new List(); - foreach (var route in this.NetworkClient.NetworkManagementClient.VirtualHubBgpConnections.ListLearnedRoutes(this.ResourceGroupName, this.VirtualRouterName, this.PeerName).Value) + foreach (var route in peerRouteList) { learnedRoutes.Add(NetworkResourceManagerProfile.Mapper.Map(route)); } From d322a6f676485c8e3f5ac79d5f11486fec69eb07 Mon Sep 17 00:00:00 2001 From: Litchi Yang Date: Mon, 5 Oct 2020 01:37:38 -0700 Subject: [PATCH 11/12] test record --- .../TestVirtualRouterPeerRoutes.json | 5099 +++++++++++++++++ 1 file changed, 5099 insertions(+) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerRoutes.json diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerRoutes.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerRoutes.json new file mode 100644 index 000000000000..4be8ac1045d7 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerRoutes.json @@ -0,0 +1,5099 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps9537?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzOTUzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c23dc0d0-fa5d-48e4-a14e-74c0125edc45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0cd17ad7-611b-4868-a643-bd9e3cd5eb83" + ], + "x-ms-correlation-request-id": [ + "0cd17ad7-611b-4868-a643-bd9e3cd5eb83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T080500Z:0cd17ad7-611b-4868-a643-bd9e3cd5eb83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:04:59 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537\",\r\n \"name\": \"ps9537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODU5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1041b0d1-923e-4abf-8076-eb9876bc14ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "45166e39-ccfa-471d-87e5-320b2bc1d95c" + ], + "x-ms-correlation-request-id": [ + "45166e39-ccfa-471d-87e5-320b2bc1d95c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T080500Z:45166e39-ccfa-471d-87e5-320b2bc1d95c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:04:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps8593' under resource group 'ps9537' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODU5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3ec5c40b-476a-40ea-8180-5d850100073e\"" + ], + "x-ms-request-id": [ + "f4c3073e-c587-48db-b332-8a02929b9161" + ], + "x-ms-correlation-request-id": [ + "c0ada3e9-bac7-438b-bb12-3953f9f9e814" + ], + "x-ms-arm-service-request-id": [ + "6a146656-1210-4288-b8df-f749ea2353b7" + ], + "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:20201005T080512Z:c0ada3e9-bac7-438b-bb12-3953f9f9e814" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:12 GMT" + ], + "Content-Length": [ + "1301" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8593\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dfe50649-4bb8-4be7-bb33-3c905acbda12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7674\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODU5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "318dedbf-b9de-458f-901a-879b6027688c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3ec5c40b-476a-40ea-8180-5d850100073e\"" + ], + "x-ms-request-id": [ + "a250a877-1957-489b-8601-4dbecc318503" + ], + "x-ms-correlation-request-id": [ + "626854d6-ada1-4adc-ae45-cd0f26b89246" + ], + "x-ms-arm-service-request-id": [ + "69be89ae-5979-482f-a1c7-6f26b4ae27a5" + ], + "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:20201005T080512Z:626854d6-ada1-4adc-ae45-cd0f26b89246" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:12 GMT" + ], + "Content-Length": [ + "1301" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8593\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dfe50649-4bb8-4be7-bb33-3c905acbda12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7674\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODU5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1bf224d-c752-4632-a76f-14b1d898422d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3ec5c40b-476a-40ea-8180-5d850100073e\"" + ], + "x-ms-request-id": [ + "287e9f0c-c321-4fb0-a4ac-f714ac030bde" + ], + "x-ms-correlation-request-id": [ + "288178e1-e07c-4ea5-90e2-a050b25b3d44" + ], + "x-ms-arm-service-request-id": [ + "4c540287-6ca6-4dea-8f7c-b735ef698e8f" + ], + "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:20201005T080512Z:288178e1-e07c-4ea5-90e2-a050b25b3d44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:12 GMT" + ], + "Content-Length": [ + "1301" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8593\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dfe50649-4bb8-4be7-bb33-3c905acbda12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7674\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\",\r\n \"etag\": \"W/\\\"3ec5c40b-476a-40ea-8180-5d850100073e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzODU5Mz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"ps7674\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60879000-b740-4ee0-a754-9af89c9197da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "684" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "539df47a-9ade-4a92-bd39-d314f33b7985" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/539df47a-9ade-4a92-bd39-d314f33b7985?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "baad58b3-7828-4afb-acaa-12600e9e3208" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "0661fdae-1d92-4da4-b812-995b6ee575e0" + ], + "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:20201005T080508Z:baad58b3-7828-4afb-acaa-12600e9e3208" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:08 GMT" + ], + "Content-Length": [ + "1299" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps8593\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593\",\r\n \"etag\": \"W/\\\"e1ab1121-f7cb-4c63-929c-ece494c4bf05\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dfe50649-4bb8-4be7-bb33-3c905acbda12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7674\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\",\r\n \"etag\": \"W/\\\"e1ab1121-f7cb-4c63-929c-ece494c4bf05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/539df47a-9ade-4a92-bd39-d314f33b7985?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzUzOWRmNDdhLTlhZGUtNGE5Mi1iZDM5LWQzMTRmMzNiNzk4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e422514-8d88-49bf-a772-dba5c36973c4" + ], + "x-ms-correlation-request-id": [ + "7186a8a7-1970-46f7-97e1-468e5bc67951" + ], + "x-ms-arm-service-request-id": [ + "3db2f4c6-7f38-4f33-9cdf-9df367b5d5ad" + ], + "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:20201005T080512Z:7186a8a7-1970-46f7-97e1-468e5bc67951" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05: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/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c428a29c-e367-4182-8deb-ccd6ee93d67c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0046e006-0a88-4226-b328-fbc05cc79666" + ], + "x-ms-correlation-request-id": [ + "0046e006-0a88-4226-b328-fbc05cc79666" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T080512Z:0046e006-0a88-4226-b328-fbc05cc79666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "213" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps175' under resource group 'ps9537' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0616addd-9bfc-46dd-be79-6bd547b79b31" + ], + "x-ms-correlation-request-id": [ + "9dcab708-bc0e-4365-9c9a-ebc1c4a11a9e" + ], + "x-ms-arm-service-request-id": [ + "225f95b9-672e-4222-a981-eaf668693628" + ], + "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:20201005T080514Z:9dcab708-bc0e-4365-9c9a-ebc1c4a11a9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:14 GMT" + ], + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"a05b0cbb-7db4-4702-983a-9f344af55738\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5c28ce3-688a-4289-b0b4-c6bc0ca87018" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "197b1b77-5ef0-4e46-9567-4d60a08bbf4e" + ], + "x-ms-correlation-request-id": [ + "ef0805a8-85d6-4375-9c7e-610797d41638" + ], + "x-ms-arm-service-request-id": [ + "e52344f5-cd91-47be-8f94-571c145b9127" + ], + "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:20201005T082207Z:ef0805a8-85d6-4375-9c7e-610797d41638" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:07 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b25d1a1-b544-4b61-898b-6c9fe9f228ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "914b84b8-948d-4ff3-90c2-5c051a857c82" + ], + "x-ms-correlation-request-id": [ + "306d925a-8164-4c37-a67b-5290db505367" + ], + "x-ms-arm-service-request-id": [ + "d9fe6e28-7ce5-4acf-b64a-54b6e994ffd3" + ], + "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:20201005T082208Z:306d925a-8164-4c37-a67b-5290db505367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:07 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcb011de-6351-4c37-842c-86fe32fd75f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c7fa4480-cb80-4f28-a80a-646dd5ddef86" + ], + "x-ms-correlation-request-id": [ + "7a396092-0c5e-4585-88a9-424bc1884197" + ], + "x-ms-arm-service-request-id": [ + "ad2a8535-e842-4836-a0e1-126c4b29c577" + ], + "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:20201005T082329Z:7a396092-0c5e-4585-88a9-424bc1884197" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"f5b18967-2fec-463a-93b2-a09fb6524f10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca994272-d879-494a-a45f-54b6e3f360c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbb87a1c-4fc6-449f-85b4-8b616d93ed01" + ], + "x-ms-correlation-request-id": [ + "3e504d3a-58be-43c5-a0a6-5882b1c73ae8" + ], + "x-ms-arm-service-request-id": [ + "3661f7d4-773c-4b2a-a319-244d0f45b090" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082512Z:3e504d3a-58be-43c5-a0a6-5882b1c73ae8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:12 GMT" + ], + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"9373cb00-dbb7-4fca-93bb-02c18ef60c82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.0.4\",\r\n \"10.0.0.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioned\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2ae7ac7-680b-4d3f-9cbd-e69878619e16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "176" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7526a816-5726-4656-acfe-0b6b34b164f0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7526a816-5726-4656-acfe-0b6b34b164f0?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "3c8d0d43-c8e7-4c1e-9e2c-01ee3ca2151f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e61a53f7-72e7-4e41-8949-08a4191426b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T080514Z:3c8d0d43-c8e7-4c1e-9e2c-01ee3ca2151f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:14 GMT" + ], + "Content-Length": [ + "588" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps175\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175\",\r\n \"etag\": \"W/\\\"a05b0cbb-7db4-4702-983a-9f344af55738\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ec35b8a-178d-40d8-aad0-a0e941aa63a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cef5e6d8-148c-4d75-8511-84561bafaa75" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "b31f5100-59c7-4c6f-a619-0ba453d36f12" + ], + "x-ms-arm-service-request-id": [ + "e64b754a-56ff-46ca-b97d-65204bd90df4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T080515Z:b31f5100-59c7-4c6f-a619-0ba453d36f12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05:15 GMT" + ], + "Content-Length": [ + "591" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9e41ee98-87d1-480c-a23c-77c3d56d9a94\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "f243c18c-dd92-42bf-884b-be06692eb98e" + ], + "x-ms-correlation-request-id": [ + "e6642648-c97d-4963-b9a0-63d6c3da5eac" + ], + "x-ms-arm-service-request-id": [ + "bce7291b-517c-4eed-ae33-4182514d4633" + ], + "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:20201005T080525Z:e6642648-c97d-4963-b9a0-63d6c3da5eac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "f2c97e4f-f208-4ec9-90a4-6c8bca1d7cd9" + ], + "x-ms-correlation-request-id": [ + "fb1bd522-edde-4aa5-9880-e2148b26631b" + ], + "x-ms-arm-service-request-id": [ + "0b7b0f2b-2874-44fc-9fd1-b192945020a1" + ], + "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:20201005T080545Z:fb1bd522-edde-4aa5-9880-e2148b26631b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:05: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "c05f235c-fd79-4da7-ae7c-4bffa2f15dd6" + ], + "x-ms-correlation-request-id": [ + "089c3a62-3a4c-46b9-8822-bf7d40eeabb6" + ], + "x-ms-arm-service-request-id": [ + "1ed4aee9-6752-4cb6-9c93-a9aed1cf6429" + ], + "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:20201005T080625Z:089c3a62-3a4c-46b9-8822-bf7d40eeabb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:06:24 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "ca5d0fff-835a-4c42-b7a1-1a6924aa31df" + ], + "x-ms-correlation-request-id": [ + "ac5ee56a-fe00-4445-8973-31f6775f17a3" + ], + "x-ms-arm-service-request-id": [ + "c970854c-54a4-49b9-8b4d-7f0e67022df8" + ], + "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:20201005T080745Z:ac5ee56a-fe00-4445-8973-31f6775f17a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:07: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "9f826135-0407-4289-959c-3e9943b3ca11" + ], + "x-ms-correlation-request-id": [ + "8b02ee11-9a6c-4581-95fd-cb40341872fc" + ], + "x-ms-arm-service-request-id": [ + "6fcf28eb-b4f2-430a-935d-c1e303eb11d9" + ], + "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:20201005T081026Z:8b02ee11-9a6c-4581-95fd-cb40341872fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:10: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "8288728b-7c58-478a-83f8-9dc89e203a85" + ], + "x-ms-correlation-request-id": [ + "bfe5c15a-f65e-47fa-bd7d-1740978f24c2" + ], + "x-ms-arm-service-request-id": [ + "1640f160-ea49-41fe-8a91-4be252542c7f" + ], + "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:20201005T081206Z:bfe5c15a-f65e-47fa-bd7d-1740978f24c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:12: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "832ae09b-7f7e-4154-8210-4a4d2164a95a" + ], + "x-ms-correlation-request-id": [ + "f106f778-1f48-40ae-bbb1-0707897961bb" + ], + "x-ms-arm-service-request-id": [ + "1f973c49-54a6-442a-9af8-67072ef12f3c" + ], + "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:20201005T081346Z:f106f778-1f48-40ae-bbb1-0707897961bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:13: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "f9b00134-b29d-409a-8249-285749fcb5c2" + ], + "x-ms-correlation-request-id": [ + "a99b78e5-2e1a-44ee-ac33-a50e6fe1d0ea" + ], + "x-ms-arm-service-request-id": [ + "214619cd-e665-48f9-bc26-7f926f868235" + ], + "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:20201005T081526Z:a99b78e5-2e1a-44ee-ac33-a50e6fe1d0ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:15: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "ab8abfda-2f41-42d6-87b6-b843dbef38de" + ], + "x-ms-correlation-request-id": [ + "5e774111-77e1-47bf-bca6-300b2a170a3b" + ], + "x-ms-arm-service-request-id": [ + "8445c29a-bd8c-44f3-aa5c-6b5904410e78" + ], + "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:20201005T081707Z:5e774111-77e1-47bf-bca6-300b2a170a3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:17:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "342aa553-8688-4ed5-bb20-9436c824e639" + ], + "x-ms-correlation-request-id": [ + "c648e81c-1a91-4ff1-bb0e-3bd5d2c40b41" + ], + "x-ms-arm-service-request-id": [ + "18dd7ea2-83f5-4d44-8d89-1c3a1af663b4" + ], + "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:20201005T081847Z:c648e81c-1a91-4ff1-bb0e-3bd5d2c40b41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:18: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "100" + ], + "x-ms-request-id": [ + "c8b5b96c-4cc8-4c16-89b2-eab0077ea0de" + ], + "x-ms-correlation-request-id": [ + "0936ed0e-9608-468e-a80d-1da5d4e67ba5" + ], + "x-ms-arm-service-request-id": [ + "41ddca5e-6dd8-41b3-a4e5-030651a1544e" + ], + "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:20201005T082027Z:0936ed0e-9608-468e-a80d-1da5d4e67ba5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:20: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/cef5e6d8-148c-4d75-8511-84561bafaa75?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2NlZjVlNmQ4LTE0OGMtNGQ3NS04NTExLTg0NTYxYmFmYWE3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6c2736b3-0e04-4d5f-9661-43ac3b119325" + ], + "x-ms-correlation-request-id": [ + "3a0113f8-d361-4028-98dc-20176837ea67" + ], + "x-ms-arm-service-request-id": [ + "e2e92d75-78dc-47fb-acce-001f8e61f10c" + ], + "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:20201005T082207Z:3a0113f8-d361-4028-98dc-20176837ea67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:07 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\"" + ], + "x-ms-request-id": [ + "1144baea-9ab1-4806-8306-57b57576dde2" + ], + "x-ms-correlation-request-id": [ + "0f3c7198-894c-4201-b9af-536ba35ae747" + ], + "x-ms-arm-service-request-id": [ + "c2b1d03f-905f-4069-bed4-9365beeed119" + ], + "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:20201005T082207Z:0f3c7198-894c-4201-b9af-536ba35ae747" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:07 GMT" + ], + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af2aca55-2a04-4791-b60f-37d97c884fb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\"" + ], + "x-ms-request-id": [ + "80b4d3f0-db4e-4b12-91e8-d405fd73a04c" + ], + "x-ms-correlation-request-id": [ + "dfe8e74e-1c9f-4106-bf74-974d9dde88c5" + ], + "x-ms-arm-service-request-id": [ + "7edc6346-a3ab-40e0-ac8c-6eddd57843d4" + ], + "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:20201005T082208Z:dfe8e74e-1c9f-4106-bf74-974d9dde88c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:07 GMT" + ], + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2441ba98-0936-4e3b-9c44-eb921cded0ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\"" + ], + "x-ms-request-id": [ + "6007d3a6-fcb3-422f-8aa8-992ae28cb137" + ], + "x-ms-correlation-request-id": [ + "640a0018-ccc0-41e9-a447-28066d625471" + ], + "x-ms-arm-service-request-id": [ + "74713b8e-7b05-4303-8567-56b48b1a37ad" + ], + "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:20201005T082208Z:640a0018-ccc0-41e9-a447-28066d625471" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:08 GMT" + ], + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"ad3434f1-0630-4191-8d3d-5eb6979b51f2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03613b54-3ec0-487e-824b-17a714e943c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f5b18967-2fec-463a-93b2-a09fb6524f10\"" + ], + "x-ms-request-id": [ + "f065e4e2-7133-4cb6-aba2-ddb5e733716d" + ], + "x-ms-correlation-request-id": [ + "96e8111c-1858-435b-b3e9-d6c3b7b4d70e" + ], + "x-ms-arm-service-request-id": [ + "9dbcfefa-a156-4395-8a52-9e5c72dac2a9" + ], + "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:20201005T082329Z:96e8111c-1858-435b-b3e9-d6c3b7b4d70e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"f5b18967-2fec-463a-93b2-a09fb6524f10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20f7c15f-529f-4e47-8c34-9c69e0065051" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"9373cb00-dbb7-4fca-93bb-02c18ef60c82\"" + ], + "x-ms-request-id": [ + "731445a6-8627-4253-8172-84c14d521835" + ], + "x-ms-correlation-request-id": [ + "5844d5f8-2bd5-42a9-b7da-8f7de3ba459f" + ], + "x-ms-arm-service-request-id": [ + "0d9868ea-4019-4af3-a88f-c8e6efaf36d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082512Z:5844d5f8-2bd5-42a9-b7da-8f7de3ba459f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:12 GMT" + ], + "Content-Length": [ + "592" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"9373cb00-dbb7-4fca-93bb-02c18ef60c82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualNetworks/ps8593/subnets/ps7674\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49b1845b-b6f5-4d6e-b340-d08099e2bf91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1c1ffd48-c975-4ff8-878e-eef5d21da2e0" + ], + "x-ms-correlation-request-id": [ + "02d568b9-5261-4afe-b60c-c57e2dbfc1c9" + ], + "x-ms-arm-service-request-id": [ + "2e7eb1ea-035f-43e4-873c-d422be5cc68c" + ], + "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:20201005T082208Z:02d568b9-5261-4afe-b60c-c57e2dbfc1c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:08 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8c1f439-e96a-4421-ac53-54adf0a3b629" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "274607a7-04d6-4061-80d6-31d32d159b00" + ], + "x-ms-correlation-request-id": [ + "915ba7ab-1a80-4cfe-b094-cc159576f3b3" + ], + "x-ms-arm-service-request-id": [ + "9a786113-aada-4eac-a694-dccf0c5899be" + ], + "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:20201005T082329Z:915ba7ab-1a80-4cfe-b094-cc159576f3b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"ps3921\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921\",\r\n \"etag\": \"W/\\\"f5b18967-2fec-463a-93b2-a09fb6524f10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4caaef31-459a-4bb6-b43e-f97fda4e5ff1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d732fca-b0c7-4ba3-aa15-2ac90816d4ec" + ], + "x-ms-correlation-request-id": [ + "3a717282-384d-4128-8a97-861f742ca136" + ], + "x-ms-arm-service-request-id": [ + "38d1900b-a9aa-4e55-888a-855ff25274c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082512Z:3a717282-384d-4128-8a97-861f742ca136" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:12 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf48f0ba-b201-4a40-a048-078ee9cf3650" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad93fb67-5ec3-4f3e-992d-e2f284c411cd" + ], + "x-ms-correlation-request-id": [ + "bf4cebfc-218d-4a71-915b-663354dc3f8d" + ], + "x-ms-arm-service-request-id": [ + "b5ff32b0-50ec-4932-bab6-b764a749b6b3" + ], + "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:20201005T082208Z:bf4cebfc-218d-4a71-915b-663354dc3f8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:08 GMT" + ], + "Content-Length": [ + "248" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921 not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f5b18967-2fec-463a-93b2-a09fb6524f10\"" + ], + "x-ms-request-id": [ + "91f72db7-89dc-497b-8885-53f3591bbfcf" + ], + "x-ms-correlation-request-id": [ + "dc418292-4aa8-4b66-9d87-a0e4bc72f3e7" + ], + "x-ms-arm-service-request-id": [ + "66047915-06fd-4a7a-8789-0a04031f1ff3" + ], + "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:20201005T082329Z:dc418292-4aa8-4b66-9d87-a0e4bc72f3e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3921\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921\",\r\n \"etag\": \"W/\\\"f5b18967-2fec-463a-93b2-a09fb6524f10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fda756e7-e2a2-4b5e-a407-88f4cf699d82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"f5b18967-2fec-463a-93b2-a09fb6524f10\"" + ], + "x-ms-request-id": [ + "8c0c0030-eaae-40ba-a0de-d381e5bf209e" + ], + "x-ms-correlation-request-id": [ + "3e380065-34e1-42a4-b9bf-6bd6cd56e77d" + ], + "x-ms-arm-service-request-id": [ + "711553bf-29ab-4b47-a76a-698275b4ddb1" + ], + "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:20201005T082330Z:3e380065-34e1-42a4-b9bf-6bd6cd56e77d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "410" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3921\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921\",\r\n \"etag\": \"W/\\\"f5b18967-2fec-463a-93b2-a09fb6524f10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 20000,\r\n \"peerIp\": \"192.168.1.5\"\r\n },\r\n \"name\": \"ps3921\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b9a1794-6412-42dd-b8c3-e25e3ff83807" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "18581ee3-4716-40dc-931b-08dadc360ff5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/18581ee3-4716-40dc-931b-08dadc360ff5?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "56a22511-1edc-4640-9002-2b1a26ef18d8" + ], + "x-ms-arm-service-request-id": [ + "0c29cca4-01c0-437c-9352-25c7bde6ee1e" + ], + "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:20201005T082208Z:56a22511-1edc-4640-9002-2b1a26ef18d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22:08 GMT" + ], + "Content-Length": [ + "409" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3921\",\r\n \"id\": \"/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921\",\r\n \"etag\": \"W/\\\"da763b45-1043-4b51-8809-395eda3cef96\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs/bgpConnections\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"peerIp\": \"192.168.1.5\",\r\n \"peerAsn\": 20000\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/18581ee3-4716-40dc-931b-08dadc360ff5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE4NTgxZWUzLTQ3MTYtNDBkYy05MzFiLTA4ZGFkYzM2MGZmNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2927ccdd-41dc-44d6-a4c4-d2cb11a61ad7" + ], + "x-ms-correlation-request-id": [ + "20954254-85ae-40d0-a34d-8a3f8924bf8b" + ], + "x-ms-arm-service-request-id": [ + "cb483a03-37d5-44f6-9aa0-1f74e67c1c74" + ], + "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:20201005T082219Z:20954254-85ae-40d0-a34d-8a3f8924bf8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/18581ee3-4716-40dc-931b-08dadc360ff5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE4NTgxZWUzLTQ3MTYtNDBkYy05MzFiLTA4ZGFkYzM2MGZmNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "5831e875-bd23-4db1-935f-9067640fa1b9" + ], + "x-ms-correlation-request-id": [ + "eda23dfa-7cc6-46e4-8cd1-88f4edba78de" + ], + "x-ms-arm-service-request-id": [ + "22ad6f90-d231-44e7-8ea5-699ca1248c28" + ], + "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:20201005T082229Z:eda23dfa-7cc6-46e4-8cd1-88f4edba78de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/18581ee3-4716-40dc-931b-08dadc360ff5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE4NTgxZWUzLTQ3MTYtNDBkYy05MzFiLTA4ZGFkYzM2MGZmNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "e836b2b9-9d1d-4640-888e-fdd0e03b06ce" + ], + "x-ms-correlation-request-id": [ + "178081f5-382d-4f47-b1e3-d7d5bb316142" + ], + "x-ms-arm-service-request-id": [ + "4abe6a96-77e6-4806-98bb-f5676dc135c1" + ], + "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:20201005T082249Z:178081f5-382d-4f47-b1e3-d7d5bb316142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:22: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/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/18581ee3-4716-40dc-931b-08dadc360ff5?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzE4NTgxZWUzLTQ3MTYtNDBkYy05MzFiLTA4ZGFkYzM2MGZmNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90a3f20c-17ef-4d9c-921a-fa8363f7c6ba" + ], + "x-ms-correlation-request-id": [ + "c34d3269-3b00-463c-8a70-adfa3c20c86b" + ], + "x-ms-arm-service-request-id": [ + "c9d8472e-204b-48b0-b8b3-89320b15e7bc" + ], + "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:20201005T082329Z:c34d3269-3b00-463c-8a70-adfa3c20c86b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:29 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921/learnedRoutes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxL2xlYXJuZWRSb3V0ZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "741a1396-73a4-4666-b875-12c90045d714" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fc24e15d-299b-4841-8db3-cd1af37b986f" + ], + "x-ms-correlation-request-id": [ + "67edb166-375f-4204-b21d-7b2927cd1b1d" + ], + "x-ms-arm-service-request-id": [ + "b123b3c7-fbed-42e7-bb85-844cfe4013f1" + ], + "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:20201005T082330Z:67edb166-375f-4204-b21d-7b2927cd1b1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:30 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2ZjMjRlMTVkLTI5OWItNDg0MS04ZGIzLWNkMWFmMzdiOTg2Zj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "fc24e15d-299b-4841-8db3-cd1af37b986f" + ], + "x-ms-correlation-request-id": [ + "67edb166-375f-4204-b21d-7b2927cd1b1d" + ], + "x-ms-arm-service-request-id": [ + "b123b3c7-fbed-42e7-bb85-844cfe4013f1" + ], + "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:20201005T082340Z:9a7c0b21-22be-415e-a66c-d08c7860b507" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:40 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2ZjMjRlMTVkLTI5OWItNDg0MS04ZGIzLWNkMWFmMzdiOTg2Zj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "fc24e15d-299b-4841-8db3-cd1af37b986f" + ], + "x-ms-correlation-request-id": [ + "67edb166-375f-4204-b21d-7b2927cd1b1d" + ], + "x-ms-arm-service-request-id": [ + "b123b3c7-fbed-42e7-bb85-844cfe4013f1" + ], + "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:20201005T082340Z:1df7c0d3-c3d0-4fb0-a42c-9aec9acdb95d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:40 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2ZjMjRlMTVkLTI5OWItNDg0MS04ZGIzLWNkMWFmMzdiOTg2Zj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da197965-15c1-47d8-9fb4-381dc2b57660" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/fc24e15d-299b-4841-8db3-cd1af37b986f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "fc24e15d-299b-4841-8db3-cd1af37b986f" + ], + "x-ms-correlation-request-id": [ + "67edb166-375f-4204-b21d-7b2927cd1b1d" + ], + "x-ms-arm-service-request-id": [ + "b123b3c7-fbed-42e7-bb85-844cfe4013f1" + ], + "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:20201005T082340Z:ca8af585-50cc-454b-af13-4c0363fe9ad0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:40 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921/advertisedRoutes?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxL2FkdmVydGlzZWRSb3V0ZXM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "402eb4df-4372-4a5d-a406-7d78d08ba5d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e2387740-318a-4696-8bd6-ebea372e0a2f" + ], + "x-ms-correlation-request-id": [ + "e661feee-5348-4777-89a0-fb76b1424c4a" + ], + "x-ms-arm-service-request-id": [ + "0daae2de-9304-4209-bf05-9cca8c4869ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082341Z:e661feee-5348-4777-89a0-fb76b1424c4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:41 GMT" + ], + "Content-Length": [ + "4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "null", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2UyMzg3NzQwLTMxOGEtNDY5Ni04YmQ2LWViZWEzNzJlMGEyZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "e2387740-318a-4696-8bd6-ebea372e0a2f" + ], + "x-ms-correlation-request-id": [ + "e661feee-5348-4777-89a0-fb76b1424c4a" + ], + "x-ms-arm-service-request-id": [ + "0daae2de-9304-4209-bf05-9cca8c4869ba" + ], + "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:20201005T082351Z:041fffb0-612c-46de-89a6-41ceb2cbf685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:51 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2UyMzg3NzQwLTMxOGEtNDY5Ni04YmQ2LWViZWEzNzJlMGEyZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "e2387740-318a-4696-8bd6-ebea372e0a2f" + ], + "x-ms-correlation-request-id": [ + "e661feee-5348-4777-89a0-fb76b1424c4a" + ], + "x-ms-arm-service-request-id": [ + "0daae2de-9304-4209-bf05-9cca8c4869ba" + ], + "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:20201005T082351Z:521807e3-4c4f-4f55-9548-27f4af343056" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:51 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2UyMzg3NzQwLTMxOGEtNDY5Ni04YmQ2LWViZWEzNzJlMGEyZj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28b31913-b46f-4397-818e-fe802585a517" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/e2387740-318a-4696-8bd6-ebea372e0a2f?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "e2387740-318a-4696-8bd6-ebea372e0a2f" + ], + "x-ms-correlation-request-id": [ + "e661feee-5348-4777-89a0-fb76b1424c4a" + ], + "x-ms-arm-service-request-id": [ + "0daae2de-9304-4209-bf05-9cca8c4869ba" + ], + "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:20201005T082351Z:40ccb1bf-92e6-4615-ae7a-3a1f677f08b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:51 GMT" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"RouteServiceRole_IN_0\": [],\r\n \"RouteServiceRole_IN_1\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/bgpConnections/ps3921?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvYmdwQ29ubmVjdGlvbnMvcHMzOTIxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b10b4b-919f-45fd-ae09-1547e874e92f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3331c064-06d4-4256-92c3-59abc4e205c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "74d2a8b0-fe34-49e1-ae4f-518c39c01420" + ], + "x-ms-arm-service-request-id": [ + "aa9ae252-85bd-484d-b618-f07211927ce1" + ], + "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:20201005T082351Z:74d2a8b0-fe34-49e1-ae4f-518c39c01420" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:23:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzMzMzFjMDY0LTA2ZDQtNDI1Ni05MmMzLTU5YWJjNGUyMDVjMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "56841dfb-0685-4bea-8f23-f218e4729ee4" + ], + "x-ms-correlation-request-id": [ + "aba4e2f3-f6fc-4209-a917-d396f2300761" + ], + "x-ms-arm-service-request-id": [ + "be2b9938-13db-45a7-85c0-e622f94ae218" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082401Z:aba4e2f3-f6fc-4209-a917-d396f2300761" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:24:01 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzMzMzFjMDY0LTA2ZDQtNDI1Ni05MmMzLTU5YWJjNGUyMDVjMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "130ec71b-f374-4fae-978c-3941079dbe93" + ], + "x-ms-correlation-request-id": [ + "62979836-5c63-4d50-9a3c-5df7315a8da2" + ], + "x-ms-arm-service-request-id": [ + "b047dfb6-e3a2-425e-8959-f6a39a746785" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082412Z:62979836-5c63-4d50-9a3c-5df7315a8da2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:24:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzMzMzFjMDY0LTA2ZDQtNDI1Ni05MmMzLTU5YWJjNGUyMDVjMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "f1f5e01d-4f23-4b5a-8ab3-e32e9691795a" + ], + "x-ms-correlation-request-id": [ + "63bd56ee-4d1a-451b-b548-74ac5477efba" + ], + "x-ms-arm-service-request-id": [ + "a319e7dc-ebbc-4a35-a4a8-9f7e6d208263" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082432Z:63bd56ee-4d1a-451b-b548-74ac5477efba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:24:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzMzMzFjMDY0LTA2ZDQtNDI1Ni05MmMzLTU5YWJjNGUyMDVjMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "746558af-7931-49dd-93b5-56a449e73feb" + ], + "x-ms-correlation-request-id": [ + "08d4977f-3832-447d-b6d7-adfbd3ce68cc" + ], + "x-ms-arm-service-request-id": [ + "c9cce908-2193-4a44-94a4-95194bc58391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082512Z:08d4977f-3832-447d-b6d7-adfbd3ce68cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:11 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzMzMzFjMDY0LTA2ZDQtNDI1Ni05MmMzLTU5YWJjNGUyMDVjMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "3331c064-06d4-4256-92c3-59abc4e205c2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/3331c064-06d4-4256-92c3-59abc4e205c2?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "74d2a8b0-fe34-49e1-ae4f-518c39c01420" + ], + "x-ms-arm-service-request-id": [ + "aa9ae252-85bd-484d-b618-f07211927ce1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082512Z:4de78f64-a99d-45da-8a2e-edc48624ef24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175/ipConfigurations/ipconfig1?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzUvaXBDb25maWd1cmF0aW9ucy9pcGNvbmZpZzE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2fa39d23-f0f0-4f42-9124-b30a7d7c67ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7591e133-f74a-4a1a-848b-7064ba1c0916" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "9fc940cb-6f00-41cd-b887-484bdef8afcf" + ], + "x-ms-arm-service-request-id": [ + "a7f977f7-323b-4a3a-80a7-bcbf74bf027f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082513Z:9fc940cb-6f00-41cd-b887-484bdef8afcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a45f5e7a-b461-41ee-9aef-beeb4343b3d9" + ], + "x-ms-correlation-request-id": [ + "646b34cd-213d-49ea-b728-30c99a5dd096" + ], + "x-ms-arm-service-request-id": [ + "dec66aed-5f44-444c-9972-526c3a395697" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082523Z:646b34cd-213d-49ea-b728-30c99a5dd096" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "c2608d7e-db81-43e9-89b4-df4edf2747b2" + ], + "x-ms-correlation-request-id": [ + "dc99f80f-cc14-478c-8842-87a654f3b5cf" + ], + "x-ms-arm-service-request-id": [ + "a944b3f1-402a-48df-8524-a4d3096011a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082533Z:dc99f80f-cc14-478c-8842-87a654f3b5cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "40" + ], + "x-ms-request-id": [ + "687edd41-052e-4515-a453-3b52826ed21e" + ], + "x-ms-correlation-request-id": [ + "f810506b-b5a2-4695-b6a7-855e4c128770" + ], + "x-ms-arm-service-request-id": [ + "f62e7921-f569-40ea-ae06-012a895b6ddb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082553Z:f810506b-b5a2-4695-b6a7-855e4c128770" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:25:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "80" + ], + "x-ms-request-id": [ + "ac62a79f-2281-43d3-a796-267eef101e42" + ], + "x-ms-correlation-request-id": [ + "31204e18-2e7b-43cb-a408-59f90190a36c" + ], + "x-ms-arm-service-request-id": [ + "5fef5897-a576-443c-b7e9-540a8e59be43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082634Z:31204e18-2e7b-43cb-a408-59f90190a36c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:26:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "160" + ], + "x-ms-request-id": [ + "096cd4cd-a1fe-45b2-8b7f-b0a0b66041e3" + ], + "x-ms-correlation-request-id": [ + "75d300bc-3a13-4ba8-a650-299d96f2da23" + ], + "x-ms-arm-service-request-id": [ + "2d0c87f2-8acf-4fb0-9fca-33329f3c9181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T082754Z:75d300bc-3a13-4ba8-a650-299d96f2da23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:27:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3e33fbe-c545-41bc-bbbb-7bb41c651654" + ], + "x-ms-correlation-request-id": [ + "228d31a4-986c-4eaf-b002-67d39e965e83" + ], + "x-ms-arm-service-request-id": [ + "86cfd4a7-6889-4c3e-97e3-0767fef2f57d" + ], + "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:20201005T083035Z:228d31a4-986c-4eaf-b002-67d39e965e83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:34 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzLzc1OTFlMTMzLWY3NGEtNGExYS04NDhiLTcwNjRiYTFjMDkxNj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01" + ], + "x-ms-request-id": [ + "7591e133-f74a-4a1a-848b-7064ba1c0916" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/7591e133-f74a-4a1a-848b-7064ba1c0916?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "9fc940cb-6f00-41cd-b887-484bdef8afcf" + ], + "x-ms-arm-service-request-id": [ + "a7f977f7-323b-4a3a-80a7-bcbf74bf027f" + ], + "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:20201005T083035Z:e558e32e-d6bf-4b9e-a710-42e41fdf0ad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs/ps175?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHMxNzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c82ac96f-5ada-4cab-b6e5-39466d3a6ad3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/a40d84ef-cafa-4ff4-a89d-6f26dff50798?api-version=2020-06-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a40d84ef-cafa-4ff4-a89d-6f26dff50798" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/a40d84ef-cafa-4ff4-a89d-6f26dff50798?api-version=2020-06-01" + ], + "x-ms-correlation-request-id": [ + "637a87d7-fa85-4624-8cb6-5954a8ac85ed" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "39defb6a-faad-4aa9-80cc-ba22221dcf81" + ], + "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:20201005T083035Z:637a87d7-fa85-4624-8cb6-5954a8ac85ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operations/a40d84ef-cafa-4ff4-a89d-6f26dff50798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zL2E0MGQ4NGVmLWNhZmEtNGZmNC1hODlkLTZmMjZkZmY1MDc5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "977f6a0f-4a6e-4a0a-a124-971485cb74ba" + ], + "x-ms-correlation-request-id": [ + "e7cbb89e-be7f-4ced-804a-c20accd49746" + ], + "x-ms-arm-service-request-id": [ + "a13df077-cacc-4f12-8e66-04dba5fc4aec" + ], + "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:20201005T083045Z:e7cbb89e-be7f-4ced-804a-c20accd49746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:45 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/providers/Microsoft.Network/locations/centraluseuap/operationResults/a40d84ef-cafa-4ff4-a89d-6f26dff50798?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25SZXN1bHRzL2E0MGQ4NGVmLWNhZmEtNGZmNC1hODlkLTZmMjZkZmY1MDc5OD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a40d84ef-cafa-4ff4-a89d-6f26dff50798" + ], + "x-ms-correlation-request-id": [ + "637a87d7-fa85-4624-8cb6-5954a8ac85ed" + ], + "x-ms-arm-service-request-id": [ + "39defb6a-faad-4aa9-80cc-ba22221dcf81" + ], + "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:20201005T083045Z:70360a69-2bf3-440f-b23e-303089f3f882" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourceGroups/ps9537/providers/Microsoft.Network/virtualHubs?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlR3JvdXBzL3BzOTUzNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f673cc84-b7d2-4110-9eac-7bb9b6b5f7c3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f76cf8ec-6cf8-4763-a1db-2f444a7f6a0d" + ], + "x-ms-correlation-request-id": [ + "ba4ae1d1-8c8b-4361-a1f8-5a9b4ebc02e0" + ], + "x-ms-arm-service-request-id": [ + "c1f399df-15c7-42fa-9647-1ca936b408ca" + ], + "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:20201005T083046Z:ba4ae1d1-8c8b-4361-a1f8-5a9b4ebc02e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:45 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/resourcegroups/ps9537?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL3Jlc291cmNlZ3JvdXBzL3BzOTUzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "756387ca-93fd-4d73-b0c9-f4ad34ba05a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "6aa2c387-aefb-4df9-bded-6c78e289a949" + ], + "x-ms-correlation-request-id": [ + "6aa2c387-aefb-4df9-bded-6c78e289a949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083047Z:6aa2c387-aefb-4df9-bded-6c78e289a949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:30:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9756e284-f257-482b-991a-66d29202a09e" + ], + "x-ms-correlation-request-id": [ + "9756e284-f257-482b-991a-66d29202a09e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083102Z:9756e284-f257-482b-991a-66d29202a09e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:31:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "72559a49-a02a-41dd-bdef-4fb9044c52de" + ], + "x-ms-correlation-request-id": [ + "72559a49-a02a-41dd-bdef-4fb9044c52de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083117Z:72559a49-a02a-41dd-bdef-4fb9044c52de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:31:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "81ba637a-30e1-4c10-a799-2d6f6614f856" + ], + "x-ms-correlation-request-id": [ + "81ba637a-30e1-4c10-a799-2d6f6614f856" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083132Z:81ba637a-30e1-4c10-a799-2d6f6614f856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:31:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "fbfe9c82-99fa-417c-8722-246334ef0fef" + ], + "x-ms-correlation-request-id": [ + "fbfe9c82-99fa-417c-8722-246334ef0fef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083147Z:fbfe9c82-99fa-417c-8722-246334ef0fef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:31:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "c81cd2bc-3844-4ada-b72b-d80e0e58609d" + ], + "x-ms-correlation-request-id": [ + "c81cd2bc-3844-4ada-b72b-d80e0e58609d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083203Z:c81cd2bc-3844-4ada-b72b-d80e0e58609d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:32:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "5dcb204e-d5a4-424d-a913-b6721128f3cd" + ], + "x-ms-correlation-request-id": [ + "5dcb204e-d5a4-424d-a913-b6721128f3cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083218Z:5dcb204e-d5a4-424d-a913-b6721128f3cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:32:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e1fec018-1898-4ca7-bd45-a5f34d1e9b94" + ], + "x-ms-correlation-request-id": [ + "e1fec018-1898-4ca7-bd45-a5f34d1e9b94" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083233Z:e1fec018-1898-4ca7-bd45-a5f34d1e9b94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:32:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/8c992d64-fce9-426d-b278-85642dfeab03/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk1MzctQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGM5OTJkNjQtZmNlOS00MjZkLWIyNzgtODU2NDJkZmVhYjAzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMU16Y3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.23" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "4713c1dc-22a5-41fb-ae0a-423cf3408a00" + ], + "x-ms-correlation-request-id": [ + "4713c1dc-22a5-41fb-ae0a-423cf3408a00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201005T083233Z:4713c1dc-22a5-41fb-ae0a-423cf3408a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 05 Oct 2020 08:32:32 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VirtualRouterPeerRoutes": [ + "ps9537", + "ps8593", + "ps175", + "ps6284", + "ps7674", + "ps3921" + ] + }, + "Variables": { + "SubscriptionId": "8c992d64-fce9-426d-b278-85642dfeab03" + } +} \ No newline at end of file From 42be37b36f564c615d42a17ccfc38c64b2360e89 Mon Sep 17 00:00:00 2001 From: litchiyangMSFT <64560090+litchiyangMSFT@users.noreply.github.com> Date: Thu, 8 Oct 2020 20:07:10 -0700 Subject: [PATCH 12/12] Update TestVirtualRouterPeerCRUD.json --- .../TestVirtualRouterPeerCRUD.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json index e721227eb7cb..e6136b27bdb2 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualRouterTests/TestVirtualRouterPeerCRUD.json @@ -4478,7 +4478,7 @@ } ], "Names": { - "Test-HubBgpConnectionCRUD": [ + "Test-VirtualRouterPeerCRUD": [ "ps3045", "ps5215", "ps2813", @@ -4490,4 +4490,4 @@ "Variables": { "SubscriptionId": "8c992d64-fce9-426d-b278-85642dfeab03" } -} \ No newline at end of file +}